ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/constraint_s.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 string constraints 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #ifndef CT_COMMON_CONSTRAINT_S_H_ 00014 #define CT_COMMON_CONSTRAINT_S_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_S : public Constraint { 00025 public: 00026 Constraint_S(void); 00027 Constraint_S(const Constraint_S &from); 00028 Constraint_S &operator = (const Constraint_S &right); 00029 virtual ~Constraint_S(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_S_H_