cgma
CubitEquation.hpp
Go to the documentation of this file.
00001 #ifndef CUBITEQUATION_HPP
00002 #define CUBITEQUATION_HPP
00003 
00004 class CubitEquation
00005 {
00006 public:
00007   CubitEquation()
00008     {}
00009   virtual ~CubitEquation()
00010     {}
00011 
00012   virtual double evaluate(double x, double y, double z, int n) = 0;
00013   virtual CubitEquation* clone() const = 0;
00014 };
00015 
00016 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines