mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 06:03:10 +00:00
16 lines
188 B
C++
16 lines
188 B
C++
|
// @trick_parse{everything}
|
||
|
#ifndef FOO_HH
|
||
|
#define FOO_HH
|
||
|
|
||
|
class Foo {
|
||
|
public:
|
||
|
#ifndef TRICK_ICG
|
||
|
int i;
|
||
|
int j;
|
||
|
int k;
|
||
|
Foo() : i(1), j(2), k(3) {}
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
#endif
|