00001 #include "PlottableObjective.h" 00002 namespace gplib 00003 { 00004 PlottableObjective::PlottableObjective() 00005 { 00006 } 00007 00008 PlottableObjective::~PlottableObjective() 00009 { 00010 } 00011 00012 PlottableObjective& PlottableObjective::operator=( 00013 const PlottableObjective& source) 00014 { 00015 if (this == &source) 00016 return *this; 00017 00018 GeneralObjective::operator=(source); 00019 return *this; 00020 00021 } 00022 }
1.5.8