File: mbl_progress_null.cxx

package info (click to toggle)
vxl 1.17.0.dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 153,280 kB
  • ctags: 105,123
  • sloc: cpp: 747,420; ansic: 209,130; fortran: 34,230; lisp: 14,915; sh: 6,187; python: 5,856; makefile: 340; perl: 294; xml: 160
file content (38 lines) | stat: -rw-r--r-- 644 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma implementation
#endif
//:
// \file
// \brief Progress class that does nothing.
// \author Tim Cootes
// \date 25 Feb 2005

#include "mbl_progress_null.h"

//: Constructor
mbl_progress_null::mbl_progress_null()
{}

//: Destructor
mbl_progress_null::~mbl_progress_null()
{}

//: Name of the class
vcl_string mbl_progress_null::is_a() const
{ return "mbl_progress_null"; }


void mbl_progress_null::on_set_estimated_iterations(const vcl_string& ,const int )
{
}


void mbl_progress_null::on_set_progress(const vcl_string&,const int )
{
}


void mbl_progress_null::on_end_progress(const vcl_string &)
{
}