| 77 | { |
| 78 | public: |
| 79 | static PUtilBase * create( ) { return new PUtilInt( 0 ); } |
| 80 | static PUtilBase * create( int val ) { return new PUtilInt( val ); } |
| 81 | static PUtilBase * create( const CanonicalForm & cf ) { return new PUtilCF( cf ); } |
| 82 | static PUtilBase * create( const Variable & v ) { return new PUtilVar( v ); } |
nothing calls this directly
no test coverage detected