#include <blndhelp.h>
Inheritance diagram for SumAllPathsElem:

Public Member Functions | |
| SumAllPathsElem () | |
| SumAllPathsElem (Path *pPath, CCAttrMap *pAttrMap) | |
| ~SumAllPathsElem () | |
| Path * | GetPath () |
| CCAttrMap * | GetAttrMap () |
Private Member Functions | |
| CC_DECLARE_DYNCREATE (SumAllPathsElem) | |
Private Attributes | |
| Path | m_Path |
| CCAttrMap * | m_pAttrMap |
Definition at line 219 of file blndhelp.h.
|
|
Definition at line 224 of file blndhelp.h. 00225 { 00226 m_pAttrMap = NULL; 00227 m_Path.Initialise(); 00228 }
|
|
||||||||||||
|
Definition at line 862 of file blndhelp.cpp. 00863 { 00864 m_Path.Initialise(pPath->GetNumCoords()); 00865 m_Path.CopyPathDataFrom(pPath); 00866 00867 m_pAttrMap = pAttrMap; 00868 }
|
|
|
Definition at line 870 of file blndhelp.cpp. 00871 { 00872 // don't need to destroy the path, just the attribute map 00873 m_pAttrMap->DeleteAttributes(); 00874 delete m_pAttrMap; 00875 }
|
|
|
|
|
|
Definition at line 234 of file blndhelp.h. 00234 { return m_pAttrMap; }
|
|
|
Definition at line 233 of file blndhelp.h. 00233 { return &m_Path; }
|
|
|
Definition at line 236 of file blndhelp.h. |
|
|
Definition at line 237 of file blndhelp.h. |
1.4.4