Last active
March 2, 2016 10:28
-
-
Save sbrl/8dc49825475d2f78a175 to your computer and use it in GitHub Desktop.
A template C++ class.
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 <string> | |
#include <iostream> | |
#include "ClassName.h" | |
using namespace std; | |
ClassName::ClassName() | |
{ | |
} | |
ClassName::~ClassName() | |
{ | |
} |
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
#pragma once | |
#include <string> | |
#include <iostream> | |
using namespace std; | |
class ClassName | |
{ | |
public: | |
ClassName(); | |
~ClassName(); | |
private: | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment