-
-
Save terabyte/e6f228bae8a78b86b06ba02ff98c0826 to your computer and use it in GitHub Desktop.
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 <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