Last active
June 30, 2024 14:20
-
-
Save trikitrok/b0c6e3af1a6437814622 to your computer and use it in GitHub Desktop.
Squeak behaviour
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 SQUEAK_H_ | |
#define SQUEAK_H_ | |
#include "../QuackBehavior.h" | |
class Squeak : public QuackBehavior { | |
public: | |
Squeak(); | |
virtual ~Squeak(); | |
void quack(); | |
}; | |
#endif /* SQUEAK_H_ */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment