]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAPropertyDataElement.hxx
hla: Use raw pointers for HLAFederate::_insert methods.
[simgear.git] / simgear / hla / HLAPropertyDataElement.hxx
1 // Copyright (C) 2009 - 2011  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifndef HLAPropertyDataElement_hxx
19 #define HLAPropertyDataElement_hxx
20
21 #include <simgear/props/props.hxx>
22 #include "HLADataElement.hxx"
23
24 namespace simgear {
25
26 class HLAPropertyDataElement : public HLADataElement {
27 public:
28     HLAPropertyDataElement();
29     HLAPropertyDataElement(SGPropertyNode* propertyNode);
30     HLAPropertyDataElement(const HLADataType* dataType, SGPropertyNode* propertyNode);
31     HLAPropertyDataElement(const HLADataType* dataType);
32     virtual ~HLAPropertyDataElement();
33
34     virtual void accept(HLADataElementVisitor& visitor);
35     virtual void accept(HLAConstDataElementVisitor& visitor) const;
36
37     virtual bool encode(HLAEncodeStream& stream) const;
38     virtual bool decode(HLADecodeStream& stream);
39
40     virtual const HLADataType* getDataType() const;
41     virtual bool setDataType(const HLADataType* dataType);
42
43     void setPropertyNode(SGPropertyNode* propertyNode);
44     SGPropertyNode* getPropertyNode();
45     const SGPropertyNode* getPropertyNode() const;
46     
47 private:
48     HLADataElement*
49     createDataElement(const SGSharedPtr<const HLADataType>& dataType, const SGSharedPtr<SGPropertyNode>& propertyNode);
50     
51     class ScalarDecodeVisitor;
52     class ScalarEncodeVisitor;
53     class ScalarDataElement;
54     class StringDecodeVisitor;
55     class StringEncodeVisitor;
56     class StringDataElement;
57     class DataElementFactoryVisitor;
58
59     SGSharedPtr<const HLADataType> _dataType;
60     SGSharedPtr<HLADataElement> _dataElement;
61     SGSharedPtr<SGPropertyNode> _propertyNode;
62 };
63
64 } // namespace simgear
65
66 #endif