Files
cpp05/ex03/Intern.hpp
2025-08-02 13:51:40 +02:00

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;
};