23 lines
343 B
C++
23 lines
343 B
C++
#ifndef INTERN_HPP
|
|
#define INTERN_HPP
|
|
|
|
#include "AForm.hpp"
|
|
#include <exception>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
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
|