Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
VersionInfo.hpp
Go to the documentation of this file.
1 /*
2  * Programs.hpp
3  *
4  * Created on: Jul 6, 2014
5  * Author: nano
6  */
7 
8 #ifndef VERSIONINFO_HPP_
9 #define VERSIONINFO_HPP_
10 
11 #include <string>
12 #include "../common/CommonBase.hpp"
13 
14 namespace phoxonics {
15 namespace common {
16 
17 struct VersionInfo : public CommonBase {
18 public:
19  std::string version { "1.0" };
20  std::string author_name { "Yohan Jasdid Rodriguez Viveros" };
21  std::string author_email { "yohan.jasdid@gmal.com" };
22  std::string company { "imabit inc." };
23 };
24 
25 }
26 }
27 
28 #endif /* VERSIONINFO_HPP_ */
std::string author_email
Definition: VersionInfo.hpp:21
Definition: CommonBase.hpp:14
std::string author_name
Definition: VersionInfo.hpp:20
std::string company
Definition: VersionInfo.hpp:22
Definition: CommonBase.hpp:17
std::string version
Definition: VersionInfo.hpp:19
Definition: VersionInfo.hpp:17