blob: bec3e23e11256b135ef91c25f14dbdf90d41ce18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#pragma once
#include "rlvdefines.h"
namespace Rlv
{
// ============================================================================
// RlvStrings
//
class Strings
{
public:
static std::string getVersion(bool wants_legacy);
static std::string getVersionAbout();
static std::string getVersionImplNum();
static std::string getVersionNum();
};
// ============================================================================
// RlvUtil
//
namespace Util
{
bool isValidReplyChannel(S32 nChannel, bool isLoopback = false);
bool parseStringList(const std::string& strInput, std::vector<std::string>& optionList, std::string_view strSeparator = Constants::OptionSeparator);
bool sendChatReply(S32 nChannel, const std::string& strUTF8Text);
bool sendChatReply(const std::string& strChannel, const std::string& strUTF8Text);
};
inline bool Util::isValidReplyChannel(S32 nChannel, bool isLoopback)
{
return (nChannel > (!isLoopback ? 0 : -1)) && (CHAT_CHANNEL_DEBUG != nChannel);
}
inline bool Util::sendChatReply(const std::string& strChannel, const std::string& strUTF8Text)
{
S32 nChannel;
return LLStringUtil::convertToS32(strChannel, nChannel) ? sendChatReply(nChannel, strUTF8Text) : false;
}
// ============================================================================
}
|