init-projects/cpp/includes/Example.hpp

14 lines
300 B
C++

#ifndef PROJECT_EXAMPLE_HPP
#define PROJECT_EXAMPLE_HPP 1
#include <iostream>
struct Example {
Example(); // constructor
virtual ~Example(); // destructor
Example(const Example &); // copy constructor
Example &operator=(const Example &); // copy assignement
};
#endif