Dripline-Cpp  v2.4.2
Dripline Implementation in C++
agent_config.cc
Go to the documentation of this file.
1 /*
2  * agent_config.cc
3  *
4  * Created on: Jun 2, 2016
5  * Author: nsoblath
6  */
7 
8 #define DRIPLINE_API_EXPORTS
9 
10 #include "agent_config.hh"
11 
12 #include "logger.hh"
13 
14 using std::string;
15 
16 LOGGER( dlog, "agent_config" );
17 
18 namespace dripline
19 {
20 
22  {
23  // default agent configuration
24 
25  add( "dripline", dripline_config() );
26 
27  add( "timeout", 10 ); // seconds
28  }
29 
31  {
32  }
33 
34 } /* namespace dripline */
Sets the default configuration used by core.
static scarab::logger dlog("agent_config")