summaryrefslogtreecommitdiffstats
path: root/pacman-c++/client.h
blob: 2816ec2be04c65d2210d7d61984437f84c647e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CLIENT_H
#define CLIENT_H

#include <QtGui>

#include "mainwidget.h"

class Client
  : public QMainWindow {
    Q_OBJECT
public:
  Client();

private:
  MainWidget *mainWidget;
};

#endif // CLIENT_H