source: trunk/IPs/systemC/Environment/TTY/include/xTTY.h @ 144

Last change on this file since 144 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: 291 bytes
Line 
1#ifndef ENVIRONMENT_XTTY_H
2#define ENVIRONMENT_XTTY_H
3
4#include <sys/types.h>
5
6namespace environment {
7namespace tty {
8
9  typedef struct canal {int CanalPipe[2];} canal ;
10
11  class xTTY
12  {
13  public : FILE * log_file;
14  public : pid_t  pid;
15  public : int    pipe_output;
16  };
17
18
19};
20};
21#endif
Note: See TracBrowser for help on using the repository browser.