ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/exp_a_mult.h ------------------------*- C++ -*-===// 00002 // 00003 // The ct_common Library 00004 // 00005 // This file is distributed under the MIT license. See LICENSE for details. 00006 // 00007 //===----------------------------------------------------------------------===// 00008 // 00009 // This header file contains the class for arithmetic expression "*" 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #ifndef CT_COMMON_EXP_A_MULT_H_ 00014 #define CT_COMMON_EXP_A_MULT_H_ 00015 00016 #include <ct_common/common/utils.h> 00017 #include <ct_common/common/exp_a_binary.h> 00018 00019 namespace ct { 00020 namespace common { 00024 class DLL_EXPORT Exp_A_Mult : public Exp_A_Binary { 00025 public: 00026 Exp_A_Mult(void); 00027 Exp_A_Mult(const Exp_A_Mult &from); 00028 Exp_A_Mult &operator = (const Exp_A_Mult &right); 00029 virtual ~Exp_A_Mult(void); 00030 00031 public: 00032 virtual std::string get_class_name(void) const; 00033 static std::string class_name(void); 00034 virtual std::string get_op_token(void) const; 00035 00036 private: 00037 virtual double evaluate_double(double val_1, double val_2) const; 00038 virtual int evaluate_int(int val_1, int val_2) const; 00039 }; 00040 } // namespace common 00041 } // namespace ct 00042 00043 #endif // CT_COMMON_EXP_A_MULT_H_