ct_common  1.0.1
Common library for combinatorial testing
src/ct_common/common/exp_s.cpp
Go to the documentation of this file.
00001 //===----- ct_common/common/exp_s.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 Exp_S
00010 //
00011 //===----------------------------------------------------------------------===//
00012 
00013 #include <ct_common/common/exp_s.h>
00014 
00015 using namespace ct::common;
00016 
00017 Exp_S::Exp_S(void)
00018   : Exp() {
00019 }
00020 
00021 Exp_S::Exp_S(const Exp_S &from)
00022   : Exp(from) {
00023 }
00024 
00025 Exp_S& Exp_S::operator = (const Exp_S &right) {
00026   Exp::operator=(right);
00027   return *this;
00028 }
00029 
00030 Exp_S::~Exp_S(void) {
00031 }
00032 
00033 std::string Exp_S::get_class_name(void) const {
00034   return Exp_S::class_name();
00035 }
00036 
00037 std::string Exp_S::class_name(void) {
00038   return "Exp_S";
00039 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines