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

Last change on this file since 144 was 144, checked in by rosiere, 14 years ago

1) compatible gcc 4.4.3
2) Translation file in MORPHEO_PREFIX directory

  • Property svn:keywords set to Id
File size: 529 bytes
Line 
1#ifndef ENVIRONMENT_TTY_PARAMETERS_H
2#define ENVIRONMENT_TTY_PARAMETERS_H
3
4#include <iostream>
5#include <stdint.h>
6
7namespace environment {
8namespace tty {
9
10  class Parameters
11  {
12  public : uint32_t      nb_tty;
13  public : std::string * name_tty;
14  public : bool          with_xtty;
15
16  public : Parameters (uint32_t      nb_tty,
17                       std::string * name_tty,
18                       bool          with_xtty)
19    {
20      this->nb_tty    = nb_tty;
21      this->name_tty  = name_tty;
22      this->with_xtty = with_xtty;
23    }
24  };
25
26};
27};
28#endif
Note: See TracBrowser for help on using the repository browser.