Remove warnings

This commit is contained in:
Alexander Bock
2015-05-24 00:09:52 +02:00
parent fed0095196
commit 98024ca29d
8 changed files with 42 additions and 30 deletions
+7 -5
View File
@@ -31,19 +31,21 @@ namespace openspace {
class ProgressBar {
public:
ProgressBar(int end, int width = 70);
ProgressBar(int end, int width, std::ostream& stream);
ProgressBar(int end, int width = 70, std::ostream& stream = std::cout);
~ProgressBar();
ProgressBar& operator=(const ProgressBar& rhs) = delete;
void print(int current);
private:
int _width;
int _previous;
int _end;
std::ostream& _stream;
}; // class ProgressBar
};
} // namespace opensapce
} // namespace openspace
#endif
#endif // __PROGRESSBAR_H__