|
|
#ifndef ANGLEREP_H #define ANGLEREP_H #include "SelfTestingObject.h" namespace Nobel { /** Kulman sisäinen esitysmuoto. */ class AngleRep : public SelfTestingObject { public: /** Kulma asteissa. */ double angleDeg; /** Invariantin tarkistus. * @return true */ virtual bool invariant() const { return true; } /** Destruktori. */ virtual ~AngleRep() { } }; } #endif
Generated by: hoppq@ilenkone on Thu Mar 1 15:43:18 2001, using kdoc 2.0a50. |