Jet  v1.3.3
field3.h
Go to the documentation of this file.
1 // Copyright (c) 2018 Doyub Kim
2 //
3 // I am making my contributions/submissions to this project solely in my
4 // personal capacity and am not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef INCLUDE_JET_FIELD3_H_
8 #define INCLUDE_JET_FIELD3_H_
9 
10 #include <memory>
11 
12 namespace jet {
13 
15 class Field3 {
16  public:
17  Field3();
18 
19  virtual ~Field3();
20 };
21 
22 typedef std::shared_ptr<Field3> Field3Ptr;
23 
24 } // namespace jet
25 
26 #endif // INCLUDE_JET_FIELD3_H_
jet::Field3Ptr
std::shared_ptr< Field3 > Field3Ptr
Definition: field3.h:22
jet::Field3
Abstract base class for 3-D fields.
Definition: field3.h:15
jet
Definition: advection_solver2.h:18
jet::Field3::~Field3
virtual ~Field3()
jet::Field3::Field3
Field3()