ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/exp_a_atom.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 base class for atomic arithmetic expressions 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #ifndef CT_COMMON_EXP_A_ATOM_H_ 00014 #define CT_COMMON_EXP_A_ATOM_H_ 00015 00016 #include <ct_common/common/utils.h> 00017 #include <ct_common/common/exp_a.h> 00018 #include <ct_common/common/paramspec.h> 00019 00020 namespace ct { 00021 namespace common { 00025 class DLL_EXPORT Exp_A_Atom : public Exp_A { 00026 public: 00027 Exp_A_Atom(void); 00028 Exp_A_Atom(const Exp_A_Atom &from); 00029 Exp_A_Atom &operator = (const Exp_A_Atom &right); 00030 virtual ~Exp_A_Atom(void) = 0; 00031 00032 public: 00033 virtual std::string get_class_name(void) const; 00034 static std::string class_name(void); 00035 }; 00036 } // namespace common 00037 } // namespace ct 00038 00039 #endif // CT_COMMON_EXP_A_ATOM_H_