diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-01-03 19:17:19 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-01-03 19:17:19 +1100 |
commit | 98b27f5f6578d9f3b204bc98baf6f4e489c8a1c1 (patch) | |
tree | 11760927a0a3869d7b9fefca302a92a27692d461 /source/core/StarDirectives.hpp | |
parent | 9e605b182da26bd9fc2f28805d5f08c6764e47a3 (diff) |
Update StarDirectives.cpp
Diffstat (limited to 'source/core/StarDirectives.hpp')
-rw-r--r-- | source/core/StarDirectives.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/core/StarDirectives.hpp b/source/core/StarDirectives.hpp index d15d095..b7575ed 100644 --- a/source/core/StarDirectives.hpp +++ b/source/core/StarDirectives.hpp @@ -44,10 +44,15 @@ public: Directives(String const& directives); Directives(String&& directives); Directives(const char* directives); + Directives(Directives const& directives); + Directives(Directives&& directives); + ~Directives(); Directives& operator=(String const& s); Directives& operator=(String&& s); Directives& operator=(const char* s); + Directives& operator=(Directives&& other); + Directives& operator=(Directives const& other); void loadOperations() const; void parse(String&& directives); |