source: trunk/IPs/systemC/hierarchy_memory/tty/xtty.h @ 82

Last change on this file since 82 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 332 bytes
Line 
1#ifndef XTTY_H
2#define XTTY_H
3
4#include <sys/types.h>
5using namespace std;
6
7namespace hierarchy_memory {
8namespace tty              {
9
10  typedef struct canal {int CanalPipe[2];} canal ;
11
12  class xtty_t
13  {
14  public : FILE * log_file;
15  public : pid_t  pid;
16  public : int    pipe_output;
17  };
18
19};}; //end namespace
20#endif //!XTTY_H
Note: See TracBrowser for help on using the repository browser.