1 /*******************************************************************************
2 Copyright (c) 2012, Jonathan Hiller
3 
4 This file is part of the AMF Tools suite. http://amf.wikispaces.com/
5 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.
6 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.
7 See <http://www.opensource.org/licenses/lgpl-3.0.html> for license details.
8 *******************************************************************************/
9 
10 #ifndef NCOORDINATES_H
11 #define NCOORDINATES_H
12 
13 #include<string>
14 
15 class CXmlStreamWrite;
16 class CXmlStreamRead;
17 
18 class nAmf;
19 
20 class nCoordinates
21 {
22 public:
23 	nCoordinates(void);
24 	~nCoordinates(void);
25 	nCoordinates(const double Xin, const double Yin, const double Zin);
nCoordinates(const nCoordinates & In)26 	nCoordinates(const nCoordinates& In) {*this = In;} //copy constructor
27 	nCoordinates& operator=(const nCoordinates& In); //overload Equals
28 	void Clear(void); //clears all data
29 
30 	//XML read/write
31 	bool WriteXML(CXmlStreamWrite* pXML, std::string* pMessage = 0);
32 	bool ReadXML(CXmlStreamRead* pXML, nAmf* pAmf, bool StrictLoad=true, std::string* pMessage = 0);
33 	bool CheckValid(nAmf* pAmf, bool FixNode=true, std::string* pMessage = 0);
34 
35 	//required children
36 	double X, Y, Z;
37 };
38 
39 #endif
40