mirror-chatterino2/twitchemotevalue.h

36 lines
416 B
C
Raw Normal View History

2017-01-04 15:12:31 +01:00
#ifndef TWITCHEMOTEVALUE_H
#define TWITCHEMOTEVALUE_H
#include "QString"
2017-01-18 21:30:23 +01:00
namespace chatterino {
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
2017-01-18 04:33:30 +01:00
getSet()
2017-01-11 18:52:09 +01:00
{
2017-01-18 04:33:30 +01:00
return set;
2017-01-04 15:12:31 +01:00
}
2017-01-11 18:52:09 +01:00
int
2017-01-18 04:33:30 +01:00
getId()
2017-01-11 18:52:09 +01:00
{
2017-01-18 04:33:30 +01:00
return id;
2017-01-04 15:12:31 +01:00
}
2017-01-11 18:52:09 +01:00
const QString &
2017-01-18 04:33:30 +01:00
getChannelName()
2017-01-11 18:52:09 +01:00
{
2017-01-18 04:33:30 +01:00
return channelName;
2017-01-04 15:12:31 +01:00
}
private:
2017-01-18 04:33:30 +01:00
int set;
int id;
QString channelName;
2017-01-04 15:12:31 +01:00
};
2017-01-18 21:30:23 +01:00
}
2017-01-04 15:12:31 +01:00
2017-01-11 18:52:09 +01:00
#endif // TWITCHEMOTEVALUE_H