#ifndef _PROGRESSBAR_H_ #define _PROGRESSBAR_H_ #include #include namespace ja2xp { class ProgressBar { public: ProgressBar(int size, int numElements); void Next(vfs::String const& message); private: const int iSIZE; const int num_elements; int count; std::vector empty_str; }; }; #endif // _PROGRESSBAR_H_