2018-09-17 13:01:02 +00:00
|
|
|
#ifndef SpectralUser_H
|
|
|
|
#define SpectralUser_H
|
2018-09-10 01:51:02 +00:00
|
|
|
|
|
|
|
#include "room.h"
|
2018-11-02 11:05:15 +00:00
|
|
|
#include "user.h"
|
2018-09-10 01:51:02 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
using namespace QMatrixClient;
|
|
|
|
|
2018-11-04 11:14:02 +00:00
|
|
|
class SpectralUser : public User {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SpectralUser(QString userId, Connection* connection)
|
2018-12-03 11:55:42 +00:00
|
|
|
: User(userId, connection) {}
|
2018-09-10 01:51:02 +00:00
|
|
|
};
|
|
|
|
|
2018-09-17 13:01:02 +00:00
|
|
|
#endif // SpectralUser_H
|