#pragma once #include #include class AForm; class Intern { public: Intern(void); Intern(const Intern &); ~Intern(void); Intern &operator=(const Intern &); AForm *makeForm(std::string, std::string) const; };