Murmur can now compile on compilers without Precompiled Headers.

git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@395 05730e5d-ab1b-0410-a4ac-84af385074fa
This commit is contained in:
Thorvald Natvig 2006-10-04 15:50:46 +00:00
parent 6a07185389
commit cd69712898
9 changed files with 19 additions and 1 deletions

2
ACL.h
View File

@ -31,6 +31,8 @@
#ifndef _ACL_H
#define _ACL_H
#include "murmur_pch.h"
class Channel;
class Player;

View File

@ -31,6 +31,8 @@
#ifndef _CHANNEL_H
#define _CHANNEL_H
#include "murmur_pch.h"
class Player;
class Group;
class ChanACL;

View File

@ -31,6 +31,8 @@
#ifndef _CONNECTION_H
#define _CONNECTION_H
#include "murmur_pch.h"
class Message;
class Connection : public QObject {

View File

@ -31,6 +31,8 @@
#ifndef _GROUP_H
#define _GROUP_H
#include "murmur_pch.h"
class Channel;
class Player;

View File

@ -31,6 +31,8 @@
#ifndef _PLAYER_H
#define _PLAYER_H
#include "murmur_pch.h"
class Channel;
class Player : public QObject {

View File

@ -31,6 +31,8 @@
#ifndef _SERVER_H
#define _SERVER_H
#include "murmur_pch.h"
class Player;
class Connection;
class Message;

View File

@ -31,6 +31,8 @@
#ifndef _DATABASE_H
#define _DATABASE_H
#include "murmur_pch.h"
class Channel;
class Player;
class Connection;

View File

@ -28,6 +28,8 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "murmur_pch.h"
#ifdef Q_OS_WIN
#include <windows.h>
#endif

View File

@ -1,5 +1,7 @@
#ifndef _MURMUR_PCH_H
#define _MURMUR_PCH_H
#include <QtCore>
#include <QtNetwork>
#include <QtSql>
#include <math.h>
#endif