rikitiki  v0.1.67
Build C++ web server modules that allow easy routing and deployment.
configuration.h
1 /* Copyright (C) 2012-2013 Justin Berger
2  The full license is available in the LICENSE file at the root of this project and is also available at http://opensource.org/licenses/MIT. */
3 #pragma once
4 
5 #include <libconfig.h++>
6 #include <map>
7 
8 namespace rikitiki {
14  struct Configuration : public libconfig::Config {
15  private:
16  Configuration();
17  void ReadGlobal();
18  public:
21  static Configuration& Global();
22  };
23 
24 }