ZipArchive.h 720 B

12345678910111213141516171819202122232425
  1. //
  2. // ZipArchive.h
  3. // ZipArchive
  4. //
  5. // Created by Serhii Mumriak on 12/1/15.
  6. //
  7. #import <Foundation/Foundation.h>
  8. //! Project version number for ZipArchive.
  9. FOUNDATION_EXPORT double ZipArchiveVersionNumber;
  10. //! Project version string for ZipArchive.
  11. FOUNDATION_EXPORT const unsigned char ZipArchiveVersionString[];
  12. // In this header, you should import all the public headers of your framework using statements like #import <SSZipArchive.h>
  13. // This is to account for the many different ways this library gets imported.
  14. #if __has_include(<SSZipArchive/SSZipArchive.h>)
  15. #import <SSZipArchive/SSZipArchive.h>
  16. #elif __has_include("../SSZipArchive.h")
  17. #import "../SSZipArchive.h"
  18. #else
  19. #import "SSZipArchive.h"
  20. #endif