Skip to content

Instantly share code, notes, and snippets.

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