19 lines
312 B
C++
19 lines
312 B
C++
#ifndef SpectralUser_H
|
|
#define SpectralUser_H
|
|
|
|
#include "room.h"
|
|
#include "user.h"
|
|
|
|
#include <QObject>
|
|
|
|
using namespace QMatrixClient;
|
|
|
|
class SpectralUser : public User {
|
|
Q_OBJECT
|
|
public:
|
|
SpectralUser(QString userId, Connection* connection)
|
|
: User(userId, connection) {}
|
|
};
|
|
|
|
#endif // SpectralUser_H
|