summaryrefslogtreecommitdiffstats
path: root/src/app/system_other.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/system_other.h')
-rw-r--r--src/app/system_other.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/app/system_other.h b/src/app/system_other.h
index aee3536..bf16c80 100644
--- a/src/app/system_other.h
+++ b/src/app/system_other.h
@@ -37,9 +37,12 @@ struct SystemTimeStamp
}
};
+class CSystemUtilsOther : public CSystemUtils
+{
+public:
+ virtual SystemDialogResult SystemDialog(SystemDialogType type, const std::string& title, const std::string& message) override;
-SystemDialogResult SystemDialog_Other(SystemDialogType type, const std::string& title, const std::string& message);
-
-void GetCurrentTimeStamp_Other(SystemTimeStamp *stamp);
-long long GetTimeStampExactResolution_Other();
-long long TimeStampExactDiff_Other(SystemTimeStamp *before, SystemTimeStamp *after);
+ virtual void GetCurrentTimeStamp(SystemTimeStamp *stamp) override;
+ virtual long long GetTimeStampExactResolution() override;
+ virtual long long TimeStampExactDiff(SystemTimeStamp *before, SystemTimeStamp *after) override;
+};