xbot/settings.hpp

22 lines
408 B
C++
Raw Normal View History

2023-11-22 19:59:34 -08:00
#pragma once
2023-11-27 19:09:45 -08:00
#include <istream>
2025-01-25 15:45:31 -08:00
#include <string>
2023-11-22 19:59:34 -08:00
struct Settings
{
std::string host;
std::string service;
std::string password;
std::string username;
std::string realname;
std::string nickname;
2025-01-25 14:12:37 -08:00
std::string sasl_mechanism;
2025-01-25 12:25:38 -08:00
std::string sasl_authcid;
std::string sasl_authzid;
std::string sasl_password;
2025-01-25 15:45:31 -08:00
static auto from_stream(std::istream &in) -> Settings;
2023-11-22 19:59:34 -08:00
};