/* * Copyright 2013-2014, Stephan Aßmus . * Copyright 2016-2023, Andrew Lindesay . * All rights reserved. Distributed under the terms of the MIT License. */ #ifndef USER_INFO_H #define USER_INFO_H #include class UserInfo { public: UserInfo(); UserInfo(const BString& nickName); UserInfo(const UserInfo& other); UserInfo& operator=(const UserInfo& other); bool operator==(const UserInfo& other) const; bool operator!=(const UserInfo& other) const; const BString& NickName() const { return fNickName; } private: BString fNickName; }; #endif // USER_INFO_H