summaryrefslogtreecommitdiff
path: root/tools/tool.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tool.h')
-rw-r--r--tools/tool.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/tool.h b/tools/tool.h
index b7fec8ec44c..a398ed5a6d8 100644
--- a/tools/tool.h
+++ b/tools/tool.h
@@ -84,27 +84,4 @@ namespace mongo {
};
- class ProgressMeter {
- public:
- ProgressMeter( long long total , int secondsBetween = 3 );
-
- void hit( int n = 1 );
-
- long long done(){
- return _done;
- }
-
- long long hits(){
- return _hits;
- }
-
- private:
-
- long long _total;
- int _secondsBetween;
-
- long long _done;
- long long _hits;
- int _lastTime;
- };
}