Last change
on this file since 123 was
81,
checked in by rosiere, 17 years ago
|
- Finish Environment (and test)
- Continue predictor_unit
- Add external tools
- svn keyword "Id" set
|
-
Property svn:keywords set to
Id
|
File size:
509 bytes
|
Line | |
---|
1 | #ifndef ENVIRONMENT_TTY_PARAMETERS_H |
---|
2 | #define ENVIRONMENT_TTY_PARAMETERS_H |
---|
3 | |
---|
4 | #include <iostream> |
---|
5 | |
---|
6 | namespace environment { |
---|
7 | namespace tty { |
---|
8 | |
---|
9 | class Parameters |
---|
10 | { |
---|
11 | public : uint32_t nb_tty; |
---|
12 | public : std::string * name_tty; |
---|
13 | public : bool with_xtty; |
---|
14 | |
---|
15 | public : Parameters (uint32_t nb_tty, |
---|
16 | std::string * name_tty, |
---|
17 | bool with_xtty) |
---|
18 | { |
---|
19 | this->nb_tty = nb_tty; |
---|
20 | this->name_tty = name_tty; |
---|
21 | this->with_xtty = with_xtty; |
---|
22 | } |
---|
23 | }; |
---|
24 | |
---|
25 | }; |
---|
26 | }; |
---|
27 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.