home *** CD-ROM | disk | FTP | other *** search
- /* ======================
- * PedModelApplication.hh
- * ======================
- *
- * Implemented by PedModelApplication.cc
- */
-
- #pragma once
-
- #include <Events.h>
-
- #include "NGLList.hh"
-
- #include "AEAModelRoot.hh"
- #include "AEAModelName.hh"
-
- class PedApplication;
-
- class PedModelApplication : public AEAModelRoot {
- public:
- // Constructor & destructor.
- PedModelApplication(PedApplication &inSubject);
- virtual ~PedModelApplication();
-
- // OSL stuff.
- virtual DescType Class() const {return cApplication;}
-
- virtual void GetProperty(DescType inDesiredClass, DescType inPropertyID, AEAModel *&outObject) const;
-
- virtual void CreateObject(DescType inNewClass) {}
-
- protected:
- PedApplication &mSubject;
- //AEAModelName *mName;
- };
-