mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 13:43:10 +00:00
23 lines
478 B
C++
23 lines
478 B
C++
|
#ifndef EXCLUDE1
|
||
|
#define EXCLUDE1
|
||
|
|
||
|
/**
|
||
|
* 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 Exclude1A {
|
||
|
private:
|
||
|
void operator=(const Exclude1A&);
|
||
|
};
|
||
|
|
||
|
class Exclude1B {
|
||
|
const std::vector<Exclude1A> foos;
|
||
|
};
|
||
|
|
||
|
#ifdef SWIG
|
||
|
This file is meant to be excluded from SWIG. It will cause an error if SWIG tries to process it.
|
||
|
#endif
|
||
|
|
||
|
#endif
|