Skip to content

Instantly share code, notes, and snippets.

@michael-martinez
Last active February 25, 2022 13:45
Show Gist options
  • Save michael-martinez/c8d497957beda781ed143fb0d1d129c0 to your computer and use it in GitHub Desktop.
Save michael-martinez/c8d497957beda781ed143fb0d1d129c0 to your computer and use it in GitHub Desktop.
#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