| 21 | using namespace icinga; |
| 22 | |
| 23 | ClassCompiler::ClassCompiler(std::string path, std::istream& input, |
| 24 | std::ostream& oimpl, std::ostream& oheader) |
| 25 | : m_Path(std::move(path)), m_Input(input), m_Impl(oimpl), m_Header(oheader) |
| 26 | { |
| 27 | InitializeScanner(); |
| 28 | } |
| 29 | |
| 30 | ClassCompiler::~ClassCompiler() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected