Skip to content

Instantly share code, notes, and snippets.

@sbrl
Last active March 2, 2016 10:28
Show Gist options
  • Save sbrl/8dc49825475d2f78a175 to your computer and use it in GitHub Desktop.
Save sbrl/8dc49825475d2f78a175 to your computer and use it in GitHub Desktop.
A template C++ class.
#include <string>
#include <iostream>
#include "ClassName.h"
using namespace std;
ClassName::ClassName()
{
}
ClassName::~ClassName()
{
}
#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