]> git.mxchange.org Git - simgear.git/blobdiff - simgear/hla/HLATypes.hxx
Windows versionhelpers.h support.
[simgear.git] / simgear / hla / HLATypes.hxx
index 931a4aa03ebf5f2d2623f2698dccaafc57caf18b..dcbc6dd53f19ed23e91e7f3c6cc3dcff23b25014 100644 (file)
@@ -18,6 +18,9 @@
 #ifndef HLATypes_hxx
 #define HLATypes_hxx
 
+#include <list>
+#include <vector>
+
 namespace simgear {
 
 enum HLASubscriptionType {
@@ -38,6 +41,10 @@ enum HLAUpdateType {
     HLAUndefinedUpdate
 };
 
+typedef std::list<unsigned> HLAIndexList;
+
+typedef std::vector<unsigned> HLADataElementIndex;
+
 } // namespace simgear
 
 #endif