00001 00011 class OExtremity : public OPoint 00012 { 00013 public: 00014 inline OGraphic* clone() const; 00015 inline OGraphic* create() const; 00016 OExtremity(); 00017 OExtremity(int,int); 00018 OExtremity(OPoint &); 00019 ~OExtremity(); 00020 00021 void svgo(ostream &); 00022 }; 00023 00024 inline OGraphic* OExtremity::clone() const 00025 { return new OExtremity(*this); } 00026 inline OGraphic* OExtremity::create() const 00027 { return new OExtremity(); } 00028