123456789101112131415161718192021222324252627282930 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-11-27
- * Changed: 2020-11-27
- *
- * */
- #ifndef LS_STD_NEWS_AGENCY_HPP
- #define LS_STD_NEWS_AGENCY_HPP
- #include <string>
- namespace ls_std_test {
- class NewsAgency {
- public:
- explicit NewsAgency(std::string _agencyName);
- ~NewsAgency() = default;
- std::string getName();
- private:
- std::string agencyName {};
- };
- }
- #endif
|