Created
January 30, 2014 15:57
-
-
Save trikitrok/b6ed4353ad1d2744fb5e 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
#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