contrib/mul/mbl/mbl_progress_null.cxx
Go to the documentation of this file.
00001 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00002 #pragma implementation
00003 #endif
00004 //:
00005 // \file
00006 // \brief Progress class that does nothing.
00007 // \author Tim Cootes
00008 // \date 25 Feb 2005
00009 
00010 #include "mbl_progress_null.h"
00011 
00012 //: Constructor
00013 mbl_progress_null::mbl_progress_null()
00014 {}
00015 
00016 //: Destructor
00017 mbl_progress_null::~mbl_progress_null()
00018 {}
00019 
00020 //: Name of the class
00021 vcl_string mbl_progress_null::is_a() const
00022 { return "mbl_progress_null"; }
00023 
00024 
00025 void mbl_progress_null::on_set_estimated_iterations(const vcl_string& ,const int )
00026 {
00027 }
00028 
00029 
00030 void mbl_progress_null::on_set_progress(const vcl_string&,const int )
00031 {
00032 }
00033 
00034 
00035 void mbl_progress_null::on_end_progress(const vcl_string &)
00036 {
00037 }
00038