diff options
Diffstat (limited to 'Sluift/tokenize.h')
-rw-r--r-- | Sluift/tokenize.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Sluift/tokenize.h b/Sluift/tokenize.h new file mode 100644 index 0000000..33ea435 --- /dev/null +++ b/Sluift/tokenize.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2013-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + +#pragma once + +#include <string> +#include <vector> + +namespace Swift { + namespace Lua { + std::vector<std::string> tokenize(const std::string&); + } +} |