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

#include "mainwidget.h"
#include <QtGui>

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

public slots:
  void toggleSound() const;

private:
  MainWidget *m_mainWidget;
};

#endif // CLIENT_H