-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommoncode.h
55 lines (46 loc) · 2.06 KB
/
commoncode.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Copyright 2014 [email protected]. All rights reserved.
*
*
* RayPump Client software might be distributed under GNU GENERAL PUBLIC LICENSE
*
* THIS SOFTWARE IS PROVIDED BY MICHAL MIELCZYNSKI ''AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL MICHAL MIELCZYNSKI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation
* are those of the authors and should not be interpreted as representing
* official policies, either expressed or implied, of Michal Mielczynski.
*/
#ifndef COMMONCODE_H
#define COMMONCODE_H
#include <QDateTime>
#include <QDebug>
#include <QString>
#include <QHostAddress>
#include <QDir>
#include <QApplication>
#define uINFO qDebug() << QDateTime::currentDateTime().toString("hh:mm:ss") << "info: (" << __FUNCTION__ << ")"
#define uWARNING qDebug() << QDateTime::currentDateTime().toString("hh:mm:ss") << "WARNING: (" << __FUNCTION__ << ")"
#define uERROR qDebug() << QDateTime::currentDateTime().toString("hh:mm:ss") << "ERROR: (" << __FUNCTION__ << ")"
const static qreal G_VERSION = 0.998f;
const static qreal G_ALLOWED_ADDON_VERSION = 0.998f;
const static QString G_VERSION_NAME = "Winter White";
// global variables
struct Globals{
static bool SERVER_VIRTUALIZED;
static QString SERVER_HOST_NAME;
static QString SERVER_IP;
static QString BUFFER_DIRECTORY;
static QString RENDERS_DIRECTORY;
};
enum ItemRole {
IR_JOB_PATH = Qt::UserRole + 1
};
#endif // COMMONCODE_H