Edit

kc3-lang/ftgl/src/FTTesselationVector.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2002-06-21 08:21:29
    Hash : 0cf246b2
    Message : Replacements for stl containers

  • src/FTTesselationVector.h
  • #ifndef    __FTTesselationVector__
    #define    __FTTesselationVector__
    
    /*
      Provides a non-STL alternative to the STL vector<...>
      used inside FTVectoriser.
    */
    
    #ifdef FT_VECTOR_CLASS_NAME
    #undef FT_VECTOR_CLASS_NAME
    #endif
    #define FT_VECTOR_CLASS_NAME FTTesselationVector
    
    #ifdef FT_VECTOR_ITEM_TYPE
    #undef FT_VECTOR_ITEM_TYPE
    #endif
    #define FT_VECTOR_ITEM_TYPE FTTesselation*
    
    #include "FTVector.h"
    
    #endif  //  __FTTesselationVector__