// file: Object.h
#ifndef _Object_H_
#define _Object_H_
// Dependencies
// Uses
/** The root of the class hierarchy..
*/
class Object
{
// Methods
public:
virtual void Load();
public:
virtual void Save() const;
};// class: Object
#endif // _Object_H_
End of Listing