File: httpglobal.h

package info (click to toggle)
goldencheetah 1%3A3.5-7
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 212,928 kB
  • sloc: cpp: 269,358; ansic: 6,508; javascript: 6,382; xml: 1,899; yacc: 1,552; java: 1,477; python: 625; sh: 593; lex: 436; makefile: 115; perl: 94; ruby: 44
file content (31 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (4)
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
/**
  @file
  @author Stefan Frings
*/

#ifndef HTTPGLOBAL_H
#define HTTPGLOBAL_H

#include <QtGlobal>

// This is specific to Windows dll's
#if defined(Q_OS_WIN)
    #if defined(QTWEBAPPLIB_EXPORT)
        #define DECLSPEC Q_DECL_EXPORT
    #elif defined(QTWEBAPPLIB_IMPORT)
        #define DECLSPEC Q_DECL_IMPORT
    #endif
#endif
#if !defined(DECLSPEC)
    #define DECLSPEC
#endif

/** Get the library version number */
DECLSPEC const char* getQtWebAppLibVersion();

/** wDebug() uses QT QMessageLogger but as info to log
    rather than interfering with normal qDebug usage **/
#define wDebug qWarning

#endif // HTTPGLOBAL_H