1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 13:41:13 +02:00

seriously?!

This commit is contained in:
Lars Melchior 2020-04-11 12:55:57 +02:00
parent 75e8f650ca
commit 812d740b4d
2 changed files with 5 additions and 5 deletions

View file

@ -2,6 +2,11 @@
#include <string>
#if defined(_WIN32) || defined(WIN32)
// apparently this is required to use strings in MSVC++
# include <sstream>
#endif
namespace greeter {
enum class LanguageCode { EN, DE, ES, FR };

View file

@ -1,10 +1,5 @@
#include <greeter.h>
#if defined(_WIN32) || defined(WIN32)
// apparently this is required to concat strings
# include <sstream>
#endif
using namespace greeter;
Greeter::Greeter(std::string _name) : name(_name) {}