#ifndef INITIALIZER_HPP #define INITIALIZER_HPP #include "ast.hpp" class Initializer : public Node { }; class Integer : public Initializer { }; class StringLiteral : public Initializer { }; #endif