mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
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:
parent
6a07185389
commit
cd69712898
2
ACL.h
2
ACL.h
@ -31,6 +31,8 @@
|
||||
#ifndef _ACL_H
|
||||
#define _ACL_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Channel;
|
||||
class Player;
|
||||
|
||||
|
||||
@ -31,6 +31,8 @@
|
||||
#ifndef _CHANNEL_H
|
||||
#define _CHANNEL_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Player;
|
||||
class Group;
|
||||
class ChanACL;
|
||||
|
||||
@ -31,6 +31,8 @@
|
||||
#ifndef _CONNECTION_H
|
||||
#define _CONNECTION_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Message;
|
||||
|
||||
class Connection : public QObject {
|
||||
|
||||
2
Group.h
2
Group.h
@ -31,6 +31,8 @@
|
||||
#ifndef _GROUP_H
|
||||
#define _GROUP_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Channel;
|
||||
class Player;
|
||||
|
||||
|
||||
2
Player.h
2
Player.h
@ -31,6 +31,8 @@
|
||||
#ifndef _PLAYER_H
|
||||
#define _PLAYER_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Channel;
|
||||
|
||||
class Player : public QObject {
|
||||
|
||||
2
Server.h
2
Server.h
@ -31,6 +31,8 @@
|
||||
#ifndef _SERVER_H
|
||||
#define _SERVER_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Player;
|
||||
class Connection;
|
||||
class Message;
|
||||
|
||||
@ -31,6 +31,8 @@
|
||||
#ifndef _DATABASE_H
|
||||
#define _DATABASE_H
|
||||
|
||||
#include "murmur_pch.h"
|
||||
|
||||
class Channel;
|
||||
class Player;
|
||||
class Connection;
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
#ifndef _MURMUR_PCH_H
|
||||
#define _MURMUR_PCH_H
|
||||
#include <QtCore>
|
||||
#include <QtNetwork>
|
||||
#include <QtSql>
|
||||
|
||||
#include <math.h>
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user