NeuroDactyl
config.h
Go to the documentation of this file.
1 
8 #ifndef _CONFIG_H_
9 #define _CONFIG_H_
10 
11 #pragma once
12 
13 #include <string>
14 #include <memory>
15 
16 #include "export.h"
17 
21 namespace NeuroDactyl {
27  class Config {
28  public:
29  virtual std::string version() const = 0;
30 
31  virtual ~Config() = default;
32  };
33 
40  FPSERVERSDK_API NeuroDactyl::Config* makeConfig(const std::string& path);
41 }
42 
43 
44 #endif /* _CONFIG_H_ */
Class for system configuration.
Definition: config.h:27
Namespace containing all symbols from the NeuroDactyl SDK.
Definition: config.h:21
FPSERVERSDK_API NeuroDactyl::Config * makeConfig(const std::string &path)