Skip to content

Instantly share code, notes, and snippets.

View christianparpart's full-sized avatar
🎃
Loading

Christian Parpart christianparpart

🎃
Loading
View GitHub Profile
#include <string>
class Blueprint
{
private:
std::string typeName_;
std::string name_;
public:
explicit Blueprint(const std::string& name) : typeName_{"docker"}, name_{name} {}