Skip to content

Instantly share code, notes, and snippets.

View dragonhades's full-sized avatar

Jimmy Shan dragonhades

  • HUAWEI
  • Shenzhen. China
View GitHub Profile
@dlivingstone
dlivingstone / DecoratorMain.cpp
Created June 27, 2012 19:43
Simple C++ Decorator Pattern example
// Simple decorator pattern example
// (c) Daniel Livingstone 2012
// CC-BY-SA
#include <string>
#include <iostream>
using namespace std;
class AbstractNPC {
public: