Skip to content

Instantly share code, notes, and snippets.

@iletai
Created November 5, 2018 16:33
Show Gist options
  • Save iletai/21c847bdc2b498ae57f9ed1557663bcf to your computer and use it in GitHub Desktop.
Save iletai/21c847bdc2b498ae57f9ed1557663bcf to your computer and use it in GitHub Desktop.
LearnOOP.h
#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