algorithm.cpp

Go to the documentation of this file.
00001 //--------------------------------------------------
00012 //---------------------------------------------------
00013 
00014 #include "algorithm.h"
00015 
00016 namespace imedgine
00017 {
00018   
00019   //--------------------------------------------------
00020   
00021   Algorithm::Algorithm()
00022   : do_cancel_(false)
00023   {
00024   }
00025   
00026   //--------------------------------------------------
00027   
00028   Algorithm::Algorithm(Algorithm const& src)
00029   {
00030   }
00031   
00032   //--------------------------------------------------
00033   
00034   Algorithm::~Algorithm()
00035   {
00036   }
00037   
00038   //--------------------------------------------------
00039   
00040   Algorithm& Algorithm::operator = (Algorithm const& src)
00041   {
00042     return *this;
00043   }
00044   
00045   //--------------------------------------------------
00046   
00047   void Algorithm::setConfiguration(imedgine::configuration_pointer_type configuration)
00048   {
00049     configuration_ = configuration;
00050   }
00051   
00052   //--------------------------------------------------
00053   
00054   void Algorithm::cancel()
00055   {
00056     do_cancel_ = true;
00057   }
00058   
00059 } // namespace imedgine
00060 

Generated on Sun Aug 13 18:19:37 2006 for iMEDgine by  doxygen 1.4.6