mirror of
https://github.com/nasa/trick.git
synced 2025-01-26 06:09:18 +00:00
19 lines
381 B
C++
19 lines
381 B
C++
|
#ifndef ICG_EXCLUDE2
|
||
|
#define ICG_EXCLUDE2
|
||
|
|
||
|
/**
|
||
|
* This file is meant to be excluded from ICG. It will produce ICG-generated
|
||
|
* code that does not compile (as long as
|
||
|
* https://github.com/nasa/trick/issues/422 isn't fixed).
|
||
|
*/
|
||
|
class IcgExclude2A {
|
||
|
private:
|
||
|
void operator=(const IcgExclude2A&);
|
||
|
};
|
||
|
|
||
|
class IcgExclude2B {
|
||
|
const std::vector<IcgExclude2A> foos;
|
||
|
};
|
||
|
|
||
|
#endif
|