diff options
Diffstat (limited to 'ast/ast.hpp')
-rw-r--r-- | ast/ast.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ast/ast.hpp b/ast/ast.hpp new file mode 100644 index 00000000..f637e742 --- /dev/null +++ b/ast/ast.hpp @@ -0,0 +1,20 @@ +#ifndef AST_HPP_INCLUDED
+#define AST_HPP_INCLUDED
+
+namespace AST {
+
+class Path
+{
+public:
+ void append(::std::string str) {}
+};
+
+class Module
+{
+public:
+ void add_alias(Path path) {}
+};
+
+}
+
+#endif // AST_HPP_INCLUDED
|