mirror-chatterino2/twitchemotevalue.h

33 lines
393 B
C
Raw Normal View History

2017-01-04 15:12:31 +01:00
#ifndef TWITCHEMOTEVALUE_H
#define TWITCHEMOTEVALUE_H
#include "QString"
2017-01-11 18:52:09 +01:00
struct TwitchEmoteValue {
2017-01-04 15:12:31 +01:00
public:
2017-01-11 18:52:09 +01:00
int
set()
{
2017-01-04 15:12:31 +01:00
return m_set;
}
2017-01-11 18:52:09 +01:00
int
id()
{
2017-01-04 15:12:31 +01:00
return m_id;
}
2017-01-11 18:52:09 +01:00
const QString &
channelName()
{
2017-01-04 15:12:31 +01:00
return m_channelName;
}
private:
int m_set;
int m_id;
QString m_channelName;
};
2017-01-11 18:52:09 +01:00
#endif // TWITCHEMOTEVALUE_H