projects
/
multypo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f7250699e30f7c847d3d9fe14462e7d04a01daed
[multypo.git]
/
qt
/
player.h
1
#ifndef PLAYER_H
2
#define PLAYER_H
3
4
#include <QString>
5
#include <QLabel>
6
7
class Player
8
{
9
private:
10
QString name;
11
QString currentLine;
12
QLabel* theLabel;
13
public:
14
Player(QWidget* parent);
15
void handleKey(QString);
16
};
17
18
#endif // PLAYER_H