1#include "datamodel/MutableExampleForCyclicDependency1.h"
2#include "datamodel/MutableExampleForCyclicDependency2.h"
3#include "datamodel/MutableExampleMC.h"
4#include "datamodel/MutableExampleReferencingType.h"
11 MutableExampleMC mcp1;
12 MutableExampleMC mcp2;
14 mcp1.adddaughters(mcp2);
15 mcp2.addparents(mcp1);
18 std::cout << mcp1 << std::endl;
21 MutableExampleForCyclicDependency1 cyc1;
22 MutableExampleForCyclicDependency2 cyc2;
27 std::cout << cyc1 << cyc2 << std::endl;
30 MutableExampleReferencingType ref1;
31 MutableExampleReferencingType ref2;
32 ExampleReferencingType ref3;
37 std::cout << ref1 << std::endl;