/** * @file address.h * @brief Declaration of the Address class. * @author Andreas Aardal Hanssen * @date 2002-2005 */ #ifndef address_h_included #define address_h_included #include #include namespace Binc { struct Address { std::string name; std::string local; std::string host; std::string toParenList() const; static Address from(std::string name, std::string_view addr); static Address from(std::string_view wholeaddr); }; } #endif