projects
/
multypo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4674255dabdf7fd9bfabe4d2b249761872e94b10
[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
void resetText();
17
bool hasName();
18
QString getName();
19
QString getCurrentLine();
20
};
21
22
#endif // PLAYER_H