12 lines
241 B
C++
12 lines
241 B
C++
#ifndef PROJECT_EXAMPLE_HPP
|
|
#define PROJECT_EXAMPLE_HPP 1
|
|
|
|
#include <iostream>
|
|
|
|
struct Example {
|
|
Example(); // constructor
|
|
Example(const Example &); // copy constructor
|
|
virtual ~Example(); // destructor
|
|
};
|
|
|
|
#endif
|