refactoring

This commit is contained in:
fourtf
2017-04-12 17:46:44 +02:00
parent 8ef492d7ae
commit 96db82e867
114 changed files with 5554 additions and 3703 deletions
+34
View File
@@ -0,0 +1,34 @@
#ifndef TWITCHEMOTEVALUE_H
#define TWITCHEMOTEVALUE_H
#include "QString"
namespace chatterino {
namespace twitch {
struct EmoteValue {
public:
int getSet()
{
return _set;
}
int getId()
{
return _id;
}
const QString &getChannelName()
{
return _channelName;
}
private:
int _set;
int _id;
QString _channelName;
};
}
}
#endif // TWITCHEMOTEVALUE_H