Perform creation and registration
| 294 | public: |
| 295 | /// Perform creation and registration |
| 296 | Create(void) { |
| 297 | for (IntPropLevels ipls; ipls(); ++ipls) { |
| 298 | (void) new IntAllMinMax(ipls.ipl()); |
| 299 | (void) new IntAllMinMaxDef(ipls.ipl()); |
| 300 | (void) new IntAllMax(ipls.ipl()); |
| 301 | (void) new IntSome<false>(ipls.ipl()); |
| 302 | (void) new IntSome<true>(ipls.ipl()); |
| 303 | (void) new VarAll(ipls.ipl()); |
| 304 | (void) new VarSome("Small",2,-1,3,ipls.ipl()); |
| 305 | (void) new VarSome("Large",3,-1,4,ipls.ipl()); |
| 306 | } |
| 307 | } |
| 308 | }; |
| 309 | |
| 310 | Create c; |