#include <plugin.h>
Inheritance diagram for PlugInPath:

Public Member Functions | |
| PlugInPath (const PathName &NewPath, INT32 ID, BOOL IsHidden=FALSE) | |
| Create a new plug-in pathname list item from the given pathname. | |
| PathName | GetPathName () const |
| String_256 | GetPathNameAsString () const |
| INT32 | GetPathNameID () |
| BOOL | IsHidden () |
Protected Attributes | |
| PathName | m_Path |
| INT32 | m_PathNameID |
| BOOL | m_IsHidden |
Definition at line 206 of file plugin.h.
|
||||||||||||||||
|
Create a new plug-in pathname list item from the given pathname.
Definition at line 235 of file plugin.cpp. 00236 { 00237 // Initialise our class variables to these specified values. 00238 m_Path = NewPath; 00239 m_PathNameID = ID; 00240 m_IsHidden = IsHidden; 00241 }
|
|
|
Definition at line 214 of file plugin.h. 00214 { return m_Path; }
|
|
|
Definition at line 215 of file plugin.h.
|
|
|
Definition at line 216 of file plugin.h. 00216 { return m_PathNameID; }
|
|
|
Definition at line 217 of file plugin.h. 00217 { return m_IsHidden; }
|
|
|
|
|
|
|
|
|
|
1.4.4