diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-10-01 18:13:01 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-04 23:12:28 +0200 |
commit | f164b808b5a6ed69f6fd0aea8ee0c88f4d377a24 (patch) | |
tree | 180ae499ba8787543d8921d3ad7b535a3518696b /Shell/Parser.h | |
parent | 34039d663925670e011db2cc6e96a120a667308a (diff) | |
download | serenity-f164b808b5a6ed69f6fd0aea8ee0c88f4d377a24.zip |
Shell: Move everything to the Shell namespace
Also provide a basic default-constructor.
Diffstat (limited to 'Shell/Parser.h')
-rw-r--r-- | Shell/Parser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Shell/Parser.h b/Shell/Parser.h index caee819ef5..a189818014 100644 --- a/Shell/Parser.h +++ b/Shell/Parser.h @@ -33,6 +33,8 @@ #include <AK/StringBuilder.h> #include <AK/Vector.h> +namespace Shell { + class Parser { public: Parser(StringView input) @@ -232,3 +234,5 @@ glob :: [*?] bareword? | bareword [*?] )"; #endif + +} |