Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-09-22 21:32:34 +0000
committerStijn Buys <ingar@osirion.org>2010-09-22 21:32:34 +0000
commita6f9773c358dd7d091ff64cbda504ab8d8066dd3 (patch)
tree226e23c4656957e908623ccda9d3d1c50240a0b4 /src/core/info.h
parentbbb43d1c15f2858573f5abb595aa62f8224e4d76 (diff)
full trading support for networked games
Diffstat (limited to 'src/core/info.h')
-rw-r--r--src/core/info.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/core/info.h b/src/core/info.h
index b3fa58f..b8154d7 100644
--- a/src/core/info.h
+++ b/src/core/info.h
@@ -25,6 +25,9 @@ namespace core
class InfoType : public Label
{
public:
+ /// info registry type definition
+ typedef std::vector<InfoType*> Registry;
+
/**
* @brief create a new information card category
* The constructor automaticly adds the instance to the registry
@@ -40,11 +43,15 @@ public:
/// search the infotype registry for a label
static InfoType *find(const std::string & label);
+
+ inline static const Registry &registry() {
+ return infotype_registry;
+ }
+ /// list the infotypes
+ static void list();
+
private:
- /// info registry type definition
- typedef std::vector<InfoType*> Registry;
-
static Registry infotype_registry;
}; // class InfoType