| 2 | |
| 3 | struct IShellItem; |
| 4 | class ShellItem |
| 5 | { |
| 6 | IShellItem* m_ptr; |
| 7 | public: |
| 8 | ShellItem(IShellItem* ptr = nullptr) :m_ptr{ ptr } {} |
| 9 | |
| 10 | wchar_t* GetDisplayName(); |
| 11 | ShellItem GetParent(); |
| 12 | |
| 13 | IShellItem* GetPtr() const { return m_ptr; } |
| 14 | }; |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected