Files
chatterino2/src/providers/twitch/EmoteValue.hpp
Rasmus Karlsson 57d6583a2b refactor: add explicit this-> where possible
I have knowingly skipped some files/portions of files where this would
create merge conflicts for other open PRs.
2025-12-30 14:59:12 +01:00

31 lines
375 B
C++

#pragma once
#include <QString>
namespace chatterino {
struct EmoteValue {
public:
int getSet()
{
return this->set_;
}
int getId()
{
return this->id_;
}
const QString &getChannelName()
{
return this->channelName_;
}
private:
int set_;
int id_;
QString channelName_;
};
} // namespace chatterino