| namespace op | |
| { | |
| class OP_API VerbosePrinter | |
| { | |
| public: | |
| VerbosePrinter(const double verbose, const unsigned long long numberFrames); | |
| virtual ~VerbosePrinter(); | |
| void printVerbose(const unsigned long long frameNumber) const; | |
| private: | |
| const unsigned long long mNumberFrames; | |
| const std::string mNumberFramesString; | |
| const double mVerbose; | |
| }; | |
| } | |