Spectral/src/spectraluser.h

22 lines
378 B
C
Raw Normal View History

#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
2019-05-17 07:01:01 +00:00
Q_PROPERTY(QColor color READ color CONSTANT)
2018-11-04 11:14:02 +00:00
public:
SpectralUser(QString userId, Connection* connection)
: User(userId, connection) {}
2019-05-17 07:01:01 +00:00
QColor color();
2018-09-10 01:51:02 +00:00
};
#endif // SpectralUser_H