Code helper is a basic windows form that helps you convert data from your clipboard to usefull code that you can later on paste.
Bored of writing these all the time after creating your class?
ExampleClass() = default;
~ExampleClass() = default;
ExampleClass(const ExampleClass& other) = delete;
ExampleClass(ExampleClass&& other) = delete;
ExampleClass& operator=(const ExampleClass& other) = delete;
ExampleClass& operator=(ExampleClass&& other) = delete;Well don't worry because there is a short cut for it now.
- Copy the name of the class
- Use the shortcut LCTRL + 5
- Paste and see the magic