00001 #include "OSDLPoint.h"
00002
00003
00004 #include <iostream>
00005
00006
00007 using std::string ;
00008 using std::list ;
00009
00010
00011 using namespace OSDL::Video::TwoDimensional ;
00012
00013
00014
00015 Point::Point() throw()
00016 {
00017
00018 }
00019
00020
00021 Point::~Point() throw()
00022 {
00023
00024 }
00025
00026
00027 const string Point::toString( Ceylan::VerbosityLevels level ) const throw()
00028 {
00029
00030 return "Abstract point" ;
00031
00032 }
00033
00034
00035 std::ostream & operator << ( std::ostream & os, const Point & p )
00036 {
00037
00038 return os << p.toString() ;
00039
00040 }
00041