19 lines
244 B
C++
19 lines
244 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class AForm;
|
|
|
|
class Intern {
|
|
public:
|
|
Intern(void);
|
|
Intern(const Intern &);
|
|
~Intern(void);
|
|
Intern &operator=(const Intern &);
|
|
|
|
AForm *makeForm(std::string, std::string) const;
|
|
|
|
};
|
|
|