diff options
Diffstat (limited to 'dev/CompilerKit/StringKit.h')
| -rw-r--r-- | dev/CompilerKit/StringKit.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev/CompilerKit/StringKit.h b/dev/CompilerKit/StringKit.h index 18b3ad8..fce1e04 100644 --- a/dev/CompilerKit/StringKit.h +++ b/dev/CompilerKit/StringKit.h @@ -7,7 +7,8 @@ * ======================================================== */ -#pragma once +#ifndef __NECTI_STRINGKIT__ +#define __NECTI_STRINGKIT__ #include <CompilerKit/Defines.h> #include <CompilerKit/ErrorOr.h> @@ -80,4 +81,8 @@ struct StringBuilder final { }; using BasicStringOr = ErrorOr<BasicString>; +using BasicStringPtr = BasicString*; +using BasicStringRef = Ref<BasicString>; } // namespace CompilerKit + +#endif /* ifndef __NECTI_STRINGKIT__ */
\ No newline at end of file |
