vertex_motion.hpp
Go to the documentation of this file.
1 
6 #ifndef VERTEX_MOTION_HPP
7 #define VERTEX_MOTION_HPP 1
8 
9 #include <vector>
10 #include "../common/hydrodynamic_variables.hpp"
11 #include "../two_dimensional/computational_cell_2d.hpp"
12 
13 using std::vector;
14 
17 {
18 public:
19 
26  virtual double operator()
27  (size_t i, vector<double> const& vp,
28  vector<ComputationalCell> const& hv) const = 0;
29 
30  virtual ~VertexMotion(void);
31 };
32 
33 #endif
Base class for vertex motion.