Dripline-Cpp  v2.10.11
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 //LOGGER( dlog, "agent_config" );
15 
16 namespace dripline
17 {
18 
20  {
21  // default agent configuration
22 
23  add( "dripline_mesh", dripline_config() );
24 
25  add( "timeout", 10 ); // seconds
26  }
27 
28 } /* namespace dripline */
Sets the default configuration used by core. These parameters pertain to the dripline mesh that will ...