Chatterino
chatterino2
src
providers
twitch
EmoteValue.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <QString>
4
5
namespace
chatterino
{
6
7
struct
EmoteValue
{
8
public
:
9
int
getSet
()
10
{
11
return
set_;
12
}
13
14
int
getId
()
15
{
16
return
id_;
17
}
18
19
const
QString &
getChannelName
()
20
{
21
return
channelName_;
22
}
23
24
private
:
25
int
set_;
26
int
id_;
27
QString channelName_;
28
};
29
30
}
// namespace chatterino
chatterino::EmoteValue
Definition:
EmoteValue.hpp:7
chatterino
Definition:
Application.cpp:48
chatterino::EmoteValue::getChannelName
const QString & getChannelName()
Definition:
EmoteValue.hpp:19
chatterino::EmoteValue::getId
int getId()
Definition:
EmoteValue.hpp:14
chatterino::EmoteValue::getSet
int getSet()
Definition:
EmoteValue.hpp:9
Generated by
1.8.13