summaryrefslogblamecommitdiffstats
path: root/tools/DSGmaker/InstaEntityDSGList.hpp
blob: 033e8a95c8a84f470378d948d2427478dad667b8 (plain) (tree)



















                                                                                               
#ifndef INSTAENTITYDSGLIST_H
#define INSTAENTITYDSGLIST_H

//custom list class,stores the address of InstaEntityDSG's in a array,that i create in DSGmaker

class tlInstaEntityDSGChunk ;

class InstaEntityDSGList 
{
    public:
        InstaEntityDSGList();
        virtual ~InstaEntityDSGList();
        int AddInstaEntity(tlInstaEntityDSGChunk*  p_insta);
        tlInstaEntityDSGChunk* GetInstaEntity(const char* name);         

    private:
        tlInstaEntityDSGChunk** mp_list;
        unsigned int mindex;        
};
#endif //end of file