Skip to content

Instantly share code, notes, and snippets.

@terabyte
Created October 7, 2016 23:07
Show Gist options
  • Save terabyte/e6f228bae8a78b86b06ba02ff98c0826 to your computer and use it in GitHub Desktop.
Save terabyte/e6f228bae8a78b86b06ba02ff98c0826 to your computer and use it in GitHub Desktop.
#include <string>
#include <list>
#include "developers.h"
using namespace std;
developers::developers() : foo(weirdness) {
devs.push_back("amling");
devs.push_back("cmyers");
}
const list<string>& developers::getDevelopers() {
return this->devs;
}
#include <string>
#include <list>
#include "weird/include.h"
using namespace std;
class developers {
public:
developers();
const list<string>& getDevelopers();
const int foo;
private:
list<string> devs;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment