Skip to content

Instantly share code, notes, and snippets.

@imetallica
Last active August 29, 2015 14:05
Show Gist options
  • Save imetallica/63723f3b435727c3500c to your computer and use it in GitHub Desktop.
Save imetallica/63723f3b435727c3500c to your computer and use it in GitHub Desktop.
#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