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