| 307 | } |
| 308 | |
| 309 | BOOL GetItemValue(HTREEITEM hItem, VARIANT* pVal) const |
| 310 | { |
| 311 | ATLASSERT(::IsWindow(m_hWnd)); |
| 312 | IProperty* prop = reinterpret_cast<IProperty*>(TBase::GetItemData(hItem)); |
| 313 | ATLASSERT(prop); |
| 314 | if( prop == NULL ) return FALSE; |
| 315 | return prop->GetValue(pVal); |
| 316 | } |
| 317 | |
| 318 | BOOL SetItemValue(HTREEITEM hItem, VARIANT* pValue) |
| 319 | { |
nothing calls this directly
no test coverage detected