Ignore:
Timestamp:
08/10/06 17:46:27 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/KdTree.h

    r1194 r1196  
    392392 
    393393  bool ExportBinTree(const string &filename); 
    394   bool LoadBinTree(const string &filename); 
     394  bool LoadBinTree(const string &filename, const ObjectContainer &object); 
    395395 
    396396protected: 
     
    559559        void ExportBinLeaf(ofstream &stream, KdLeaf *leaf); 
    560560        void ExportBinInterior(ofstream &stream, KdInterior *interior); 
    561 void ImportBinLeaf(ifstream &stream, KdLeaf *leaf); 
    562         void ImportBinInterior(ifstream &stream, KdInterior *interior); 
     561        KdLeaf *ImportBinLeaf(ifstream &stream, KdInterior *parent); 
     562        KdInterior *ImportBinInterior(ifstream &stream, KdInterior *parent); 
     563        KdNode *LoadNextNode(ifstream &stream, KdInterior *parent); 
    563564 
    564565  int mTermMaxNodes; 
Note: See TracChangeset for help on using the changeset viewer.