1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// AUTOMOC relaxed mode objects #include "RObjA.hpp" #include "RObjB.hpp" #include "RObjC.hpp" // Forward declaration bool commonRelaxed(); int main(int argv, char** args) { // Common tests if (!commonRelaxed()) { return -1; } // Relaxed tests RObjA rObjA; RObjB rObjB; RObjC rObjC; return 0; }