Created
November 5, 2018 16:33
-
-
Save iletai/21c847bdc2b498ae57f9ed1557663bcf to your computer and use it in GitHub Desktop.
LearnOOP.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
class LearnOOP | |
{ | |
public: | |
LearnOOP(); | |
~LearnOOP(); | |
void DoSomeThing(); | |
string GetLearnOOP(); | |
void SetLearn(string isLearn); | |
private: | |
string isLearn; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment