#include <htmllist.h>
Inheritance diagram for HTMLFileListItem:
Public Member Functions | |
HTMLFileListItem (String_256 Filename, INT32 TagId, BOOL Center) | |
HTMLFileListItem constructor. Create a new HTMLFileListItem. | |
String_256 | GetFileName () |
return the filename | |
INT32 | GetTagId () |
return the tag ID | |
BOOL | IsCenter () |
return the tag ID | |
void | MyPrint () |
Private Attributes | |
BOOL | m_IsCenter |
String_256 | m_Filename |
String_256 | m_Path |
INT32 | m_TagId |
Definition at line 123 of file htmllist.h.
|
HTMLFileListItem constructor. Create a new HTMLFileListItem.
Definition at line 133 of file htmllist.cpp. 00134 { 00135 m_Filename = Filename; 00136 m_TagId = TagId; 00137 m_IsCenter = Center; 00138 }
|
|
return the filename
Definition at line 154 of file htmllist.cpp. 00155 { 00156 return m_Filename; 00157 }
|
|
return the tag ID
Definition at line 173 of file htmllist.cpp. 00174 { 00175 return m_TagId; 00176 }
|
|
return the tag ID
Definition at line 192 of file htmllist.cpp. 00193 { 00194 return m_IsCenter; 00195 }
|
|
Definition at line 199 of file htmllist.cpp. 00200 { 00201 if (IsUserName("Olivier")) 00202 { 00203 TRACE( _T("HTMLFileListItem::FileName = %s\n"), (TCHAR*)m_Filename); 00204 //TRACE( _T("HTMLFileListItem::TagId = %d\n"), m_TagId); 00205 } 00206 }
|
|
Definition at line 136 of file htmllist.h. |
|
Definition at line 135 of file htmllist.h. |
|
Definition at line 137 of file htmllist.h. |
|
Definition at line 138 of file htmllist.h. |