1 // RootFolder.h 2 3 #ifndef ZIP7_INC_ROOT_FOLDER_H 4 #define ZIP7_INC_ROOT_FOLDER_H 5 6 #include "../../../Common/MyCom.h" 7 #include "../../../Common/MyString.h" 8 9 #include "IFolder.h" 10 11 const unsigned kNumRootFolderItems_Max = 4; 12 13 Z7_CLASS_IMP_NOQIB_2( 14 CRootFolder 15 , IFolderFolder 16 , IFolderGetSystemIconIndex 17 ) 18 UString _names[kNumRootFolderItems_Max]; 19 int _iconIndices[kNumRootFolderItems_Max]; 20 public: 21 void Init(); 22 }; 23 24 #endif 25