Added Include folder

*facepalm*
This commit is contained in:
2025-07-29 15:33:17 +02:00
parent 82abf3c259
commit f54a3ba309
11 changed files with 224 additions and 20 deletions

View File

@ -0,0 +1,13 @@
#pragma once
#include <string>
namespace fsh {
class StringLiteral : public std::string {
public:
StringLiteral() : std::string() {}
StringLiteral(const std::string& str) : std::string(str) {}
};
}