1 #ifndef GENERATED_LOAD_TEST_HPP
2 #define GENERATED_LOAD_TEST_HPP
24 typedef void (
LoadTest::*bool_type)()
const;
25 void big_long_name_that_really_doesnt_matter()
const {}
29 operator bool_type()
const
31 return m_isLoaded ? &LoadTest::big_long_name_that_really_doesnt_matter : 0;
37 LoadTest() : m_isLoaded(false), m_numMissing(0) {}
38 LoadTest(
bool isLoaded,
int numMissing) : m_isLoaded(isLoaded), m_numMissing(isLoaded ? numMissing : 0) {}