MADARA  3.2.3
EvalSettings.cpp
Go to the documentation of this file.
1 #include "EvalSettings.h"
2 
3 namespace madara
4 {
5  namespace knowledge
6  {
7  /* Constructor Args:
8  bool t_delay_sending_modifieds,
9  bool t_treat_globals_as_locals,
10  bool t_signal_updates,
11  bool t_always_overwrite,
12  bool t_always_expand,
13  bool t_track_local_changes,
14  std::string t_pre_print_statement,
15  std::string t_post_print_statement,
16  */
17 
18  const EvalSettings EvalSettings::DEFAULT (false, false, true, false, true, false, "", "");
19  const EvalSettings EvalSettings::NO_EXPAND (false, false, true, false, false, false, "", "");
20  const EvalSettings EvalSettings::DELAY (true, false, true, false, true, false, "", "");
21  const EvalSettings EvalSettings::DELAY_NO_EXPAND(true, false, true, false, false, false, "", "");
22  }
23 }
static const EvalSettings DELAY
Settings to delay sending modifieds, but do expand variables.
Definition: EvalSettings.h:38
Provides functions and classes for the distributed knowledge base.
static const EvalSettings DELAY_NO_EXPAND
Settings to delay sending modifieds, and not expand variables.
Definition: EvalSettings.h:41
static const EvalSettings NO_EXPAND
Settings to immediately send modifieds, and not expand variables.
Definition: EvalSettings.h:35
Copyright (c) 2015 Carnegie Mellon University.
static const EvalSettings DEFAULT
Settings to immediately send modifieds, but do expand variables.
Definition: EvalSettings.h:32