diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-22 17:51:05 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-22 17:51:05 (GMT) |
| commit | 97bf9a517e63e87eebeedd6a6d393e83f6354a23 (patch) | |
| tree | 9c523987a49d8cd2ae28becc3b2c520b8fbbf35d /src/client/Client.h | |
| parent | a1b4168b30979fc9bb8571d382b4bfc6aa8f87f0 (diff) | |
| download | powder-97bf9a517e63e87eebeedd6a6d393e83f6354a23.zip powder-97bf9a517e63e87eebeedd6a6d393e83f6354a23.tar.gz | |
Snapshot checking
Diffstat (limited to 'src/client/Client.h')
| -rw-r--r-- | src/client/Client.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/Client.h b/src/client/Client.h index a2d8720..cb39f2e 100644 --- a/src/client/Client.h +++ b/src/client/Client.h @@ -35,9 +35,11 @@ public: int Major; int Minor; int Build; + int Time; BuildType Type; - UpdateInfo() : Major(0), Minor(0), Build(0), File(""), Type(Stable) {} - UpdateInfo(int major, int minor, int build, std::string file, BuildType type) : Major(major), Minor(minor), Build(build), File(file), Type(type) {} + UpdateInfo() : Major(0), Minor(0), Build(0), Time(0), File(""), Type(Stable) {} + UpdateInfo(int major, int minor, int build, std::string file, BuildType type) : Major(major), Minor(minor), Build(build), Time(0), File(file), Type(type) {} + UpdateInfo(int time, std::string file, BuildType type) : Major(0), Minor(0), Build(0), Time(time), File(file), Type(type) {} }; class ClientListener; |
