valSPH
 All Classes Files Functions Variables
Kernel.h
Go to the documentation of this file.
1 
10 #ifndef __Kernel_h__
11 #define __Kernel_h__
12 
13 
14 #include <vector>
15 
16 
17 using namespace std;
18 
19 
20 using namespace std;
21 
22 
23 class Kernel {
24 
25 
26  private:
27 
28 
29  public:
30 
31 
35  Kernel ();
36 
37 
47  virtual double dAlphaEvaluate (vector<int> alpha, vector<double> q, double h) = 0;
48 
49 
53  ~Kernel ();
54 
55 
56 };
57 
58 
59 #endif