Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/UI/FileManager/PhysDriveFolder.h')
-rwxr-xr-xCPP/7zip/UI/FileManager/PhysDriveFolder.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/CPP/7zip/UI/FileManager/PhysDriveFolder.h b/CPP/7zip/UI/FileManager/PhysDriveFolder.h
deleted file mode 100755
index 64a36b91..00000000
--- a/CPP/7zip/UI/FileManager/PhysDriveFolder.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// PhysDriveFolder.h
-
-#ifndef __PHYSDRIVEFOLDER_H
-#define __PHYSDRIVEFOLDER_H
-
-#include "Common/MyString.h"
-#include "Common/MyCom.h"
-#include "../../Archive/IArchive.h"
-
-#include "IFolder.h"
-
-class CPhysDriveFolder:
- public IFolderFolder,
- public IFolderWasChanged,
- public IFolderOperations,
- public IFolderGetItemFullSize,
- public IFolderClone,
- // public IFolderGetSystemIconIndex,
- public CMyUnknownImp
-{
- UInt64 GetSizeOfItem(int anIndex) const;
-public:
- MY_QUERYINTERFACE_BEGIN
- MY_QUERYINTERFACE_ENTRY(IFolderWasChanged)
- MY_QUERYINTERFACE_ENTRY(IFolderOperations)
- MY_QUERYINTERFACE_ENTRY(IFolderGetItemFullSize)
- MY_QUERYINTERFACE_ENTRY(IFolderClone)
- // MY_QUERYINTERFACE_ENTRY(IFolderGetSystemIconIndex)
- MY_QUERYINTERFACE_END
- MY_ADDREF_RELEASE
-
-
- INTERFACE_FolderFolder(;)
- INTERFACE_FolderOperations(;)
-
- STDMETHOD(WasChanged)(Int32 *wasChanged);
- STDMETHOD(GetItemFullSize)(UInt32 index, PROPVARIANT *value, IProgress *progress);
- STDMETHOD(Clone)(IFolderFolder **resultFolder);
-
- // STDMETHOD(GetSystemIconIndex)(UInt32 index, Int32 *iconIndex);
-
-private:
- UString _name;
- UString _prefix;
- UString _path;
- UString GetFullPath() const { return _prefix + _path; }
- UString GetFullPathWithName() const { return GetFullPath() + L'\\' + _name; }
- CMyComPtr<IFolderFolder> _parentFolder;
-
- UINT _driveType;
- DISK_GEOMETRY geom;
- UInt64 _length;
-
-public:
- HRESULT Init(const UString &path);
- HRESULT GetLength(UInt64 &size) const;
-};
-
-#endif