Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 10, 2005, 12:08:18 PM (19 years ago)
Author:
patrick
Message:

orxonox/branches/md2_laoder: changed to vector container, since its faster for this application. there are compile errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/md2_loader/src/lib/graphics/importer/abstract_model.h

    r4079 r4142  
    2323
    2424#include "stdincl.h"
     25
    2526#include "base_object.h"
    2627
    27 template<class T> class tList;
    28 
     28//template<class T> class tList;
     29template<class T> class vector;
    2930
    3031//! This is our 3D point class.  CONFLICTING with Vector.cc
     
    9394        int currentAnim;                                        // The current index into pAnimations list (NEW)
    9495        int currentFrame;                                       // The current frame of the current animation (NEW)
    95         tList<tAnimationInfo>* animationList; // The list of animations (NEW)
    96         tList<tMaterialInfo>* materialList;     // The list of material information (Textures and colors)
    97         tList<t3DObject>* objectList;                   // The object list for our model
     96        vector<tAnimationInfo>* animationList; // The list of animations (NEW)
     97        vector<tMaterialInfo>* materialList;    // The list of material information (Textures and colors)
     98        vector<t3DObject>* objectList;                  // The object list for our model
    9899};
    99100
Note: See TracChangeset for help on using the changeset viewer.