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