Exemplo n.º 1
0
        static Target create( const Option& o )
        {

            House* house = new House( &o );
            TargetValue* THIS = new TargetValue( house );
            house->setTHIS(THIS);
            Target target = THIS;

            house->build(o);

            // Added to level in build()
            // l.addFeature( target );

            return target;
        }