ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/assignment.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 Assignment 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #include <ct_common/common/assignment.h> 00014 00015 using namespace ct::common; 00016 00017 Assignment::Assignment(void) { 00018 } 00019 00020 Assignment::Assignment(const Assignment &from) { 00021 } 00022 00023 Assignment::~Assignment(void) { 00024 } 00025 00026 Assignment &Assignment::operator = (const Assignment &right) { 00027 return *this; 00028 } 00029