Last active
August 29, 2015 14:05
-
-
Save imetallica/63723f3b435727c3500c to your computer and use it in GitHub Desktop.
This file contains 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
#ifndef __EXAMPLE_H__ | |
#define __EXAMPLE_H__ | |
#include <vector> | |
class Example { | |
public: | |
static int D; | |
static vector<Example> examples; | |
} | |
#endif | |
// On the .cpp file | |
Example::D = 0; | |
vector<Example> Example::examples; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment