Spectral/src/spectraluser.h

19 lines
312 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
public:
SpectralUser(QString userId, Connection* connection)
: User(userId, connection) {}
2018-09-10 01:51:02 +00:00
};
#endif // SpectralUser_H