added the header file for intro.

This commit is contained in:
Justin 2025-05-09 23:08:12 -05:00
parent efa67b2189
commit c602fda775
1 changed files with 23 additions and 0 deletions

23
src/include/intro.h Normal file
View File

@ -0,0 +1,23 @@
#include <iostream>
#include "include/print.h"
use namespace std;
class Intro {
public:
Intro();
Intro(Intro &&) = default;
Intro(const Intro &) = default;
Intro &operator=(Intro &&) = default;
Intro &operator=(const Intro &) = default;
~Intro();
void intro();
private:
};
Intro::Intro() {
}
Intro::~Intro() {
}