|
|
#ifndef LENGTHREP_H #define LENGTHREP_H #include "SelfTestingObject.h" namespace NobelNS { /** Pituuden sisäinen esitys. */ class LengthRep : public SelfTestingObject { public: /** Pituus senttimetreissä. */ double lengthCM; /** Invariantin tarkistus. * @return true */ virtual bool invariant() const { return true; } /** Destruktori. */ virtual ~LengthRep() { } }; } #endif
Generated by: hoppq@ilenkone on Tue Mar 20 23:14:05 2001, using kdoc 2.0a53. |