18 lines
287 B
C++
18 lines
287 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <iostream>
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
|