ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/paramspec_string.cpp ----------------*- 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 file contains the function definitions of class ParamSpec_String 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #include <ct_common/common/paramspec_string.h> 00014 00015 using namespace ct::common; 00016 00017 ParamSpec_String::ParamSpec_String(void) 00018 : ParamSpec() { 00019 } 00020 00021 ParamSpec_String::ParamSpec_String(const ParamSpec_String &from) 00022 : ParamSpec(from) { 00023 } 00024 00025 ParamSpec_String &ParamSpec_String::operator = ( 00026 const ParamSpec_String &right) { 00027 ParamSpec::operator=(right); 00028 return *this; 00029 } 00030 00031 ParamSpec_String::~ParamSpec_String(void) { 00032 } 00033 00034 std::string ParamSpec_String::get_class_name(void) const { 00035 return ParamSpec_String::class_name(); 00036 } 00037 00038 std::string ParamSpec_String::class_name(void) { 00039 return "ParamSpec_String"; 00040 }