src/main.h

changeset 611
6679e47b019f
parent 606
3dd6f343ec06
child 613
2d01590da286
--- a/src/main.h	Wed Jan 08 23:52:25 2014 +0200
+++ b/src/main.h	Fri Jan 10 03:35:50 2014 +0200
@@ -23,23 +23,6 @@
 #ifndef LDFORGE_MAIN_H
 #define LDFORGE_MAIN_H
 
-// Hack to make KDevelop parse QString properly. Q_REQUIRED_RESULT expands into
-// an __attribute__((warn_unused_result)) KDevelop's lexer doesn't seem to
-// understand, yielding an error and leaving some methods unlexed.
-//
-// The following first includes <QChar> to get Q_REQUIRED_RESULT defined first,
-// then re-defining it as nothing. This causes Q_REQUIRED_RESULT to essentially
-// "vanish" from QString's methods when KDevelop lexes them.
-//
-// Similar reasoning for Q_DECL_HIDDEN, except with Q_OBJECT this time.
-#ifdef IN_IDE_PARSER
-# include <QChar>
-# undef Q_REQUIRED_RESULT
-# undef Q_DECL_HIDDEN
-# define Q_REQUIRED_RESULT
-# define Q_DECL_HIDDEN
-#endif
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdint.h>
@@ -84,10 +67,6 @@
 # define DIRSLASH_CHAR '/'
 #endif // WIN32
 
-#ifdef null
-#undef null
-#endif // null
-
 #ifdef __GNUC__
 #define FUNCNAME __PRETTY_FUNCTION__
 #else
@@ -108,9 +87,7 @@
 // On Windows I just can't get the actual error messages otherwise.
 void assertionFailure (const char* file, int line, const char* funcname, const char* expr);
 
-#ifdef assert
-# undef assert
-#endif // assert
+#undef assert
 
 #ifdef DEBUG
 # define assert(N) { ((N) ? (void) 0 : assertionFailure (__FILE__, __LINE__, FUNCNAME, #N)); }
@@ -122,6 +99,8 @@
 QString versionString();
 QString fullVersionString();
 
+QString getApplicationDirectory();
+
 #define properties private
 #define typedefs public
 #define for_axes(AX) for (const Axis AX : std::initializer_list<const Axis> ({X, Y, Z}))

mercurial