ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/constraint_a.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 arithmetic constraints 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #ifndef CT_COMMON_CONSTRAINT_A_H_ 00014 #define CT_COMMON_CONSTRAINT_A_H_ 00015 00016 #include <ct_common/common/utils.h> 00017 #include <ct_common/common/constraint.h> 00018 00019 namespace ct { 00020 namespace common { 00024 class DLL_EXPORT Constraint_A : public Constraint { 00025 public: 00026 Constraint_A(void); 00027 Constraint_A(const Constraint_A &from); 00028 Constraint_A &operator = (const Constraint_A &right); 00029 virtual ~Constraint_A(void); 00030 00031 virtual std::string get_class_name(void) const; 00032 static std::string class_name(void); 00033 }; 00034 } // namespace common 00035 } // namespace ct 00036 00037 #endif // CT_COMMON_CONSTRAINT_A_H_