Fixed Windows compilation issues (introduced while fixing the linux compilation issues!)

This commit is contained in:
Srivats P. 2010-01-02 14:50:19 +00:00
parent be620e0ab6
commit 395024cc0c
4 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,6 @@
#include <QTemporaryFile>
#include <QtGlobal>
#include <QProcess>
#include <QTemporaryFile>
#include "portgroup.h"

View File

@ -1,5 +1,7 @@
#include "pcapport.h"
#include <QtGlobal>
pcap_if_t *PcapPort::deviceList_ = NULL;
PcapPort::PcapPort(int id, const char *device)

View File

@ -1,5 +1,6 @@
#include "portmanager.h"
#include <QtGlobal>
#include <pcap.h>
#include "pcapport.h"

View File

@ -1,6 +1,8 @@
#ifndef _SERVER_WIN_PCAP_PORT_H
#define _SERVER_WIN_PCAP_PORT_H
#include <QtGlobal>
#ifdef Q_OS_WIN32
#include "pcapport.h"