added the header file for intro.
This commit is contained in:
parent
efa67b2189
commit
c602fda775
|
@ -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() {
|
||||
}
|
Loading…
Reference in New Issue