Last active
February 25, 2022 13:45
-
-
Save michael-martinez/c8d497957beda781ed143fb0d1d129c0 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 HELLOWORLDRULEOFFIVE_H | |
#define HELLOWORLDRULEOFFIVE_H | |
class SYMBOL_EXPORT HelloWorldRuleOfFive | |
{ | |
public: | |
HelloWorldRuleOfFive() = default; | |
~HelloWorldRuleOfFive() = default; | |
HelloWorldRuleOfFive( const HelloWorldRuleOfFive & other ) = default; | |
HelloWorldRuleOfFive( HelloWorldRuleOfFive && other ) = default; | |
HelloWorldRuleOfFive & operator=( const HelloWorldRuleOfFive & other ) = default; | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment