]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLADataElementVisitor.hxx
hla: Use raw pointers for HLAFederate::_insert methods.
[simgear.git] / simgear / hla / HLADataElementVisitor.hxx
1 // Copyright (C) 2009 - 2012  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 HLADataElementVisitor_hxx
19 #define HLADataElementVisitor_hxx
20
21 namespace simgear {
22
23 class HLABasicDataElement;
24 class HLAAbstractEnumeratedDataElement;
25 class HLAAbstractFixedRecordDataElement;
26 class HLAAbstractArrayDataElement;
27 class HLAAbstractVariantRecordDataElement;
28
29 class HLADataElementVisitor {
30 public:
31     virtual ~HLADataElementVisitor() {}
32
33     virtual void apply(HLADataElement&);
34
35     virtual void apply(HLABasicDataElement&);
36     virtual void apply(HLAAbstractEnumeratedDataElement&);
37     virtual void apply(HLAAbstractArrayDataElement&);
38     virtual void apply(HLAAbstractFixedRecordDataElement&);
39     virtual void apply(HLAAbstractVariantRecordDataElement&);
40 };
41
42 class HLAConstDataElementVisitor {
43 public:
44     virtual ~HLAConstDataElementVisitor() {}
45
46     virtual void apply(const HLADataElement&);
47
48     virtual void apply(const HLABasicDataElement&);
49     virtual void apply(const HLAAbstractEnumeratedDataElement&);
50     virtual void apply(const HLAAbstractArrayDataElement&);
51     virtual void apply(const HLAAbstractFixedRecordDataElement&);
52     virtual void apply(const HLAAbstractVariantRecordDataElement&);
53 };
54
55 }
56
57 #endif