From the header --
#ifndef _MOUNTAIN_H
#define _MOUNTAIN_H
#include <iostream>
using namespace std;
class Mountain
{
public:
Mountain();
Mountain(const Mountain&);
~Mountain();
void set(const char *);
char *country;
int height;
};
#endif
From the implementation --
|