xbot/settings.hpp

18 lines
286 B
C++
Raw Normal View History

2023-11-22 19:59:34 -08:00
#pragma once
#include <string>
2023-11-27 19:09:45 -08:00
#include <istream>
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;
static auto from_stream(std::istream & in) -> Settings;
};