Ignore:
Timestamp:
02/17/07 22:48:12 (17 years ago)
Author:
mattausch
Message:

worded on obj loading in Ogre

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/ObjReader/include/ObjManualMeshLoader.h

    r2111 r2123  
    22#define __ObjManualMeshLoader_H__ 
    33 
     4#include "Ogre.h" 
    45 
    5 #include "Ogre.h" 
    6 #include "ObjMeshData.h" 
    7  
     6namespace  GtpVisibilityPreprocessor { 
     7class BvhLeaf; 
     8} 
    89 
    910class __declspec(dllexport) ObjManualMeshLoader: public Ogre::ManualResourceLoader 
    1011{ 
    11         public: 
    12                 ObjManualMeshLoader(); 
    13                 ObjManualMeshLoader(ObjMeshData *mData); 
    14                 ~ObjManualMeshLoader();  
     12public: 
     13        ObjManualMeshLoader(GtpVisibilityPreprocessor::BvhLeaf *obj); 
     14        ~ObjManualMeshLoader();  
    1515 
    16                 void loadResource(Ogre::Resource *resource); 
     16        void loadResource(Ogre::Resource *resource); 
    1717 
    18                 Ogre::AxisAlignedBox *getBoundingBox(); 
    19         private: 
    20                 ObjMeshData *data; 
     18protected: 
    2119 
     20        GtpVisibilityPreprocessor::BvhLeaf *mObject; 
    2221}; 
    2322 
Note: See TracChangeset for help on using the changeset viewer.