00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef OSDL_POINT_H_
00028 #define OSDL_POINT_H_
00029
00030
00031 #include "Ceylan.h"
00032
00033 #include <string>
00034
00035
00036
00037
00038 namespace OSDL
00039 {
00040
00041
00042
00043 namespace Video
00044 {
00045
00046
00047
00048 namespace TwoDimensional
00049 {
00050
00051
00052
00053
00061 class OSDL_DLL Point: public Ceylan::TextDisplayable
00062 {
00063
00064
00065 public:
00066
00067
00069 Point() ;
00070
00071
00073 virtual ~Point() throw() ;
00074
00075
00076
00081 virtual void flip() = 0 ;
00082
00083
00084
00097 virtual const std::string toString(
00098 Ceylan::VerbosityLevels level = Ceylan::high ) const ;
00099
00100
00101
00107 static const Ceylan::Maths::Linear::MatrixIndex
00108 Dimensions = 0 ;
00109
00110
00111 } ;
00112
00113
00114 }
00115
00116 }
00117
00118 }
00119
00120
00121
00123 OSDL_DLL std::ostream & operator << ( std::ostream & os,
00124 const OSDL::Video::TwoDimensional::Point & p ) ;
00125
00126
00127
00128 #endif // OSDL_POINT_H_
00129