/******************************************************************************* Copyright (c) 2012, Jonathan Hiller This file is part of the AMF Tools suite. http://amf.wikispaces.com/ AMF Tools is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. AMF Tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. See for license details. *******************************************************************************/ #ifndef NCOORDINATES_H #define NCOORDINATES_H #include class CXmlStreamWrite; class CXmlStreamRead; class nAmf; class nCoordinates { public: nCoordinates(void); ~nCoordinates(void); nCoordinates(const double Xin, const double Yin, const double Zin); nCoordinates(const nCoordinates& In) {*this = In;} //copy constructor nCoordinates& operator=(const nCoordinates& In); //overload Equals void Clear(void); //clears all data //XML read/write bool WriteXML(CXmlStreamWrite* pXML, std::string* pMessage = 0); bool ReadXML(CXmlStreamRead* pXML, nAmf* pAmf, bool StrictLoad=true, std::string* pMessage = 0); bool CheckValid(nAmf* pAmf, bool FixNode=true, std::string* pMessage = 0); //required children double X, Y, Z; }; #endif