Changeset 206


Ignore:
Timestamp:
Feb 22, 2006 11:00:10 AM (18 years ago)
Author:
cxsong
Message:

changed private data types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/mesh/mesh.h

    r203 r206  
    33
    44#include <string>
     5#include "element.h"
    56#include "util.h"
    67
     
    4849
    4950private:
    50         std:string m_id;
     51        std::string m_id;
    5152        int m_numNodes;
    5253        int m_numElements;
    5354        int m_nodeIndex;
    5455        int m_elemIndex;
    55         RpNode3d * m_nodeList;
    56         RpElement * m_elemList;
     56        RpNode3d * m_nodeList; // ptr to a list of node objects
     57        RpElement ** m_elemList; // ptr to a list of ptrs to element objects
    5758};
    5859
Note: See TracChangeset for help on using the changeset viewer.