「🎉」 init: hello world !
This commit is contained in:
18
ex03/Intern.hpp
Normal file
18
ex03/Intern.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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;
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user