#ifndef __CLASSNAM_HPP #define __CLASSNAM_HPP #include "type.hpp" /* aClassName represents a type from which it is possible to inherit from */ class aClassName : public aType { public: aClassName(const char *name, const char *libname=NULL); aClassName(const String& name, const String& libname); aClassName(const aClassName& t); aClassName(istream& i) : aType(i) {} virtual ~aClassName(); virtual int isClass() const { return 1; } }; #endif