trick/test/SIM_test_icg_file_skipped/models/Foo.hh
Scott Fennell 9589c1062c
in ICG: Add FileSkipped preprocessor callback to FindTrickICG (#1125)
* #608 add implementation of FileSkipped callback to FindTrickICG to add include chains for headers that have already been preprocessed

* #608 add test SIM for FindTrickICG offsets SIM_test_icg_file_skipped
2021-04-19 19:34:17 -05:00

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