diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-16 12:30:05 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-16 12:30:05 +0200 |
commit | 046da7da9bf57ac9254f76fd1c43eadf1673cdf5 (patch) | |
tree | cd30abff939c02abc8ab1f9c9ef39afe79828c4c /include/configreader.h | |
parent | 4bdc173ee7802898ae46a09357e244210d4dd8e1 (diff) |
Move typedef ClassVector to ServerConfig::ClassVector
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index f3b1f8b74..8615388d5 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -227,6 +227,10 @@ class CoreExport ServerConfig std::string PrependModule(const std::string& fn) const { return FileSystem::ExpandPath(Module, fn); } }; + /** Holds a complete list of all connect blocks + */ + typedef std::vector<reference<ConnectClass> > ClassVector; + /** Get a configuration tag * @param tag The name of the tag to get */ |