Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Gnuplot2D.hpp
Go to the documentation of this file.
1 /*
2  * GnuplotFdtd2D.hpp
3  *
4  * Created on: Jul 6, 2014
5  * Author: nano
6  */
7 
8 #ifndef GNUPLOT2D_HPP_
9 #define GNUPLOT2D_HPP_
10 
11 #include "gnuplot-iostream.h"
12 #include "GnuplotConfig.hpp"
13 #include "GnuplotItem2D.hpp"
14 #include <vector>
15 
16 namespace phoxonics {
17 namespace visual {
18 
19 class Gnuplot2D {
20 public:
21  Gnuplot2D();
22  virtual ~Gnuplot2D();
23 
24  void render(Gnuplot& gp, GnuplotConfig& gp_config, std::vector<GnuplotItem2D>& gp_data);
25 };
26 
27 } /* namespace visual */
28 } /* namespace phoxonics */
29 
30 #endif /* GNUPLOT2D_HPP_ */
Definition: CommonBase.hpp:14
virtual ~Gnuplot2D()
Definition: Gnuplot2D.cpp:20
Definition: GnuplotConfig.hpp:17
Gnuplot2D()
Definition: Gnuplot2D.cpp:15
Definition: Gnuplot2D.hpp:19
void render(Gnuplot &gp, GnuplotConfig &gp_config, std::vector< GnuplotItem2D > &gp_data)
Definition: Gnuplot2D.cpp:24