Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
GnuplotConfig.hpp
Go to the documentation of this file.
1 /*
2  * gnuplotConfig.hpp
3  *
4  * Created on: Jul 24, 2014
5  * Author: nano
6  */
7 
8 #ifndef GNUPLOTCONFIG_HPP_
9 #define GNUPLOTCONFIG_HPP_
10 
11 #include <string>
12 #include <vector>
13 
14 namespace phoxonics {
15 namespace visual {
16 
17 struct GnuplotConfig {
18  // Const / Dest
19  explicit GnuplotConfig();
21 
22  std::vector<std::string> additional_commands { }; // empty list
23 };
24 
25 }
26 }
27 
28 #endif /* GNUPLOTCONFIG_HPP_ */
GnuplotConfig()
Definition: GnuplotConfig.cpp:13
Definition: CommonBase.hpp:14
~GnuplotConfig()
Definition: GnuplotConfig.cpp:15
std::vector< std::string > additional_commands
Definition: GnuplotConfig.hpp:22
Definition: GnuplotConfig.hpp:17