Anding title and fixing
This commit is contained in:
parent
90483a0c71
commit
8a351b03b4
|
@ -1 +1,2 @@
|
|||
#include <iostream>
|
||||
using namespace std;
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
class Title{
|
||||
private:
|
||||
protected:
|
||||
public:
|
||||
void mainTitle();
|
||||
};
|
|
@ -1,6 +1,8 @@
|
|||
#include "include/main.h"
|
||||
#include "include/title.h"
|
||||
|
||||
int main (){
|
||||
|
||||
Title title;
|
||||
title.mainTitle();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
#include "include/title.h"
|
||||
|
||||
|
||||
void Title::mainTitle(){
|
||||
|
||||
cout << "This is the title" << endl;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue