Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Created January 30, 2014 15:57
Show Gist options
  • Save trikitrok/b6ed4353ad1d2744fb5e to your computer and use it in GitHub Desktop.
Save trikitrok/b6ed4353ad1d2744fb5e to your computer and use it in GitHub Desktop.
#ifndef QUACKBEHAVIOR_H_
#define QUACKBEHAVIOR_H_
class QuackBehavior {
public:
QuackBehavior(){};
virtual ~QuackBehavior(){};
virtual void quack() = 0;
};
#endif /* QUACKBEHAVIOR_H_ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment