Field3.h
Go to the documentation of this file.
1 /*************************************************************************
2 > File Name: Field3.h
3 > Project Name: CubbyFlow
4 > Author: Chan-Ho Chris Ohk
5 > Purpose: Abstract base class for 3-D fields.
6 > Created Time: 2017/03/13
7 > Copyright (c) 2018, Chan-Ho Chris Ohk
8 *************************************************************************/
9 #ifndef CUBBYFLOW_FIELD3_H
10 #define CUBBYFLOW_FIELD3_H
11 
12 #include <memory>
13 
14 namespace CubbyFlow
15 {
17  class Field3
18  {
19  public:
20  Field3();
21  virtual ~Field3();
22  };
23 
24  using Field3Ptr = std::shared_ptr<Field3>;
25 }
26 
27 #endif
std::shared_ptr< Field3 > Field3Ptr
Definition: Field3.h:24
Abstract base class for 3-D fields.
Definition: Field3.h:17
Definition: pybind11Utils.h:24