Added Include folder
*facepalm*
This commit is contained in:
13
include/util/stringliteral.hpp
Normal file
13
include/util/stringliteral.hpp
Normal 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) {}
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user