1234567891011121314151617181920212223242526272829303132 |
- #ifndef LS_STD_NEWS_AGENCY_HPP
- #define LS_STD_NEWS_AGENCY_HPP
- #include <string>
- namespace test::event
- {
- class NewsAgency
- {
- public:
- explicit NewsAgency(::std::string _agencyName);
- virtual ~NewsAgency();
- ::std::string getName();
- private:
- ::std::string agencyName{};
- };
- }
- #endif
|