/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-11-27 * Changed: 2023-05-19 * * */ #ifndef LS_STD_NEWS_AGENCY_HPP #define LS_STD_NEWS_AGENCY_HPP #include namespace test::event { class NewsAgency { public: explicit NewsAgency(::std::string _agencyName); virtual ~NewsAgency(); [[nodiscard]] ::std::string getName() const; private: ::std::string agencyName{}; }; } #endif