~ubuntu-branches/debian/sid/universalindentgui/sid

« back to all changes in this revision

Viewing changes to src/UiGuiIndentServer.h

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2012-05-22 08:49:27 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120522084927-oijnyby6gedsinbh
Tags: 1.2.0-1
* New upstream release.
* Drop 02_fix_gcc_4.5_build.patch - merged upstream.
* Update debian/contol:
  - bump debhelper to 9.
  - bump Standards-Version to 3.9.3 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *   Copyright (C) 2006-2009 by Thomas Schweitzer                          *
 
2
 *   Copyright (C) 2006-2012 by Thomas Schweitzer                          *
3
3
 *   thomas-schweitzer(at)arcor.de                                         *
4
4
 *                                                                         *
5
5
 *   This program is free software; you can redistribute it and/or modify  *
20
20
#ifndef UIGUIINDENTSERVER_H
21
21
#define UIGUIINDENTSERVER_H
22
22
 
23
 
#include <QTcpServer>
24
 
#include <QTcpSocket>
25
 
#include <QMessageBox>
 
23
#include <QObject>
 
24
 
 
25
class QTcpServer;
 
26
class QTcpSocket;
 
27
 
26
28
 
27
29
class UiGuiIndentServer : public QObject
28
30
{
43
45
    void checkIfReadyForHandleRequest();
44
46
 
45
47
private:
46
 
    QTcpServer *tcpServer;
47
 
    QByteArray dataToSend;
48
 
    bool readyForHandleRequest;
49
 
    QTcpSocket *currentClientConnection;
50
 
    quint32 blockSize;
 
48
    QTcpServer *_tcpServer;
 
49
    QByteArray _dataToSend;
 
50
    bool _readyForHandleRequest;
 
51
    QTcpSocket *_currentClientConnection;
 
52
    quint32 _blockSize;
51
53
};
52
54
 
53
55
#endif // UIGUIINDENTSERVER_H