mirror of
https://github.com/1dot13/source.git
synced 2026-08-26 14:30:26 +02:00
ja2export is not vendored, we own that + fix errors
stop lying about it by keeping it in ext/ fix three errors in clang-cl
This commit is contained in:
committed by
majcosta
parent
fc1c1dfe77
commit
fd47a422b5
@@ -0,0 +1,23 @@
|
||||
#ifndef _PROGRESSBAR_H_
|
||||
#define _PROGRESSBAR_H_
|
||||
|
||||
#include <vector>
|
||||
#include <vfs/Core/vfs_string.h>
|
||||
|
||||
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<wchar_t> empty_str;
|
||||
};
|
||||
};
|
||||
|
||||
#endif // _PROGRESSBAR_H_
|
||||
Reference in New Issue
Block a user