trick/test/SIM_exclusion_mechanisms/models/ExtLibDir.hh
2019-10-07 14:12:06 -05:00

20 lines
502 B
C++

// @trick_parse{everything}
// @trick_link_dependency{ExtLibDir.cpp}
#ifndef EXT_LIB_DIR1
#define EXT_LIB_DIR1
/**
* This file is part of a Trickified library and is meant to be excluded from
* ICG via TRICK_EXT_LIB_DIRS. If the exclusion logic failts, the generated I/O
* code will result in multiple-definition errors at link time as the symbols
* will also exist in the Trickified partially-linked object.
*/
class ExtLibDir1 {
private:
void operator=(const ExtLibDir1&);
};
#endif