Dripline-Cpp  v2.10.11
Dripline Implementation in C++
agent_config.hh
Go to the documentation of this file.
1 /*
2  * agent_config.hh
3  *
4  * Created on: Jun 2, 2016
5  * Author: nsoblath
6  */
7 
8 #ifndef DRIPLINE_AGENT_CONFIG_HH_
9 #define DRIPLINE_AGENT_CONFIG_HH_
10 
11 #include "dripline_config.hh" // for convenience of things using agent_config, include this here
12 
13 namespace dripline
14 {
15 
22  class DRIPLINE_API agent_config : public scarab::param_node
23  {
24  public:
25  agent_config();
26  agent_config( const agent_config& ) = default;
27  agent_config( agent_config&& ) = default;
28  virtual ~agent_config() = default;
29 
30  agent_config& operator=( const agent_config& ) = default;
32  };
33 
34 } /* namespace dripline */
35 #endif /* DRIPLINE_AGENT_CONFIG_HH_ */
Sets the default agent configuration.
Definition: agent_config.hh:23
agent_config(agent_config &&)=default
virtual ~agent_config()=default
agent_config & operator=(const agent_config &)=default
agent_config(const agent_config &)=default
agent_config & operator=(agent_config &&)=default
#define DRIPLINE_API
Definition: dripline_api.hh:34