Changeset 665 for trunk/src2/core/RpNode.h
- Timestamp:
- Apr 6, 2007, 6:06:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src2/core/RpNode.h
r657 r665 32 32 virtual int dimensionality() const = 0; 33 33 34 virtual ~Node() ;34 virtual ~Node() {} 35 35 36 36 private: … … 47 47 virtual double x(double newval) { _x = newval; return _x; } 48 48 49 virtual ~Node1D() ;49 virtual ~Node1D() {} 50 50 51 51 private: … … 65 65 virtual double y(double newval) { _y = newval; return _y; } 66 66 67 virtual ~Node2D() ;67 virtual ~Node2D() {} 68 68 69 69 private: … … 86 86 virtual double z(double newval) { _z = newval; return _z; } 87 87 88 virtual ~Node3D() ;88 virtual ~Node3D() {} 89 89 90 90 private:
Note: See TracChangeset
for help on using the changeset viewer.