Changeset 1093 for s10k/Vago/utilvago.h
- Timestamp:
- Dec 30, 2017, 2:57:32 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
s10k/Vago/utilvago.h
r1061 r1093 2 2 #define UTILVAGO_H 3 3 4 #include "util.h" 5 #include "logger.h" 4 #include <util.h> 5 #include <cpp17optional/optional.hpp> 6 #include <plog/Log.h> 7 #include <plog/Converters/NativeEOLConverter.h> 8 9 #include <QDateTime> 6 10 7 11 namespace GlobalVars{ 8 12 9 const QString AppVersion="1. 3";10 const QString LastCompatibleVersion = "1. 0";13 const QString AppVersion="1.4"; 14 const QString LastCompatibleVersion = "1.4"; 11 15 const QString ToolsFolder = "tools"; 12 16 const QString OniSplitString="OniSplit.exe"; … … 46 50 namespace UtilVago{ 47 51 void openLogFile(); 48 void showAndLogWarningPopUp( Logger *logger,const QString &message);52 void showAndLogWarningPopUp(const QString &message); 49 53 void showWarningPopUpLogButton(const QString &message); 50 void showAndLogWarningPopUpLogButton( Logger *logger,const QString &message);51 void showAndLogErrorPopUp( Logger *logger,const QString &message);54 void showAndLogWarningPopUpLogButton(const QString &message); 55 void showAndLogErrorPopUp(const QString &message); 52 56 void showErrorPopUpLogButton(const QString &message); 53 void showAndLogErrorPopUpLogButton( Logger *logger,const QString &message);57 void showAndLogErrorPopUpLogButton(const QString &message); 54 58 QString getOSIndependentAppPath(); 55 59 QString getAppPath(); … … 61 65 QString getMonoExecutablePath(); 62 66 #endif 67 QString getDateTimeFormatForFilename(const QDateTime ¤tDateTime); 63 68 } 64 69
Note:
See TracChangeset
for help on using the changeset viewer.