Created
October 7, 2016 22:21
-
-
Save terabyte/bb4dd26f9250e9bc5ddeb85c77394968 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; | |
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