Ignore:
Timestamp:
01/25/06 11:08:35 (18 years ago)
Author:
mattausch
Message:

changed view cell parser. warning, not working yet!!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellsParserXerces.h

    r508 r575  
    1414 
    1515class VspBspTree; 
     16class BspTree; 
    1617class ViewCellsManager; 
    1718 
     
    2223  //  Constructors and Destructor 
    2324  // ----------------------------------------------------------------------- 
    24   ViewCellsParseHandlers(VspBspTree *tree,  
    25                                                  ViewCellsManager *viewCellsManager, 
     25  ViewCellsParseHandlers(ViewCellsManager **viewCellsManager, 
    2626                                                 ObjectContainer *objects); 
    2727  ~ViewCellsParseHandlers(); 
     
    6161  void resetDocument(); 
    6262 
     63  void CreateViewCellsManager(const char *name); 
     64 
     65 
    6366  VspBspTree *mVspBspTree; 
     67  BspTree *mBspTree; 
     68   
    6469  BspNode *mCurrentNode; 
    6570  ViewCellContainer mViewCells; 
     
    6873 
    6974  // Handlers for X3D 
    70   void StartLeaf(AttributeList& attributes); 
    71   void StartInterior(AttributeList& attributes); 
    72   void EndInterior(); 
     75  void StartBspLeaf(AttributeList& attributes); 
     76  void StartBspInterior(AttributeList& attributes); 
     77  void EndBspInterior(); 
    7378  
    7479  void StartViewCell(AttributeList&  attributes); 
    7580  void EndViewCells(); 
    7681 
     82  void StartHierarchy(AttributeList& attributes); 
     83 
     84  void startBspElement(string element, AttributeList& attributes); 
    7785  // ----------------------------------------------------------------------- 
    7886  //  Handlers for the SAX ErrorHandler interface 
Note: See TracChangeset for help on using the changeset viewer.