#if !defined(_2DVECTOR_) #define _2DVECTOR_ void InitTables(); class C2DVector { private: long x,y; int angle; long length; public: void SetX( long Xin ); void SetY( long Yin ); void SetLength( long Lin ); void SetAngle( int Ain ); long GetX(); long GetY(); long GetLength(); int GetAngle(); void operator=(C2DVector aVector); C2DVector(); C2DVector( long Xin, long Yin ); ~C2DVector(); }; #endif