#ifndef INTERN_HPP #define INTERN_HPP #include "AForm.hpp" #include #include #include class AForm; class Intern { public: Intern(); Intern(const Intern &other); Intern &operator=(const Intern &other); ~Intern(); AForm *makeForm(const std::string form_name, const std::string form_target); }; #endif