PIApplePackage.h 408 B

1234567891011121314151617
  1. /**
  2. * Name: libpackageinfo
  3. * Type: iOS library
  4. * Desc: iOS library for retrieving information regarding installed packages.
  5. *
  6. * Author: Lance Fetters (aka. ashikase)
  7. * License: LGPL v3 (See LICENSE file for details)
  8. */
  9. #import "PIPackage.h"
  10. @interface PIApplePackage : PIPackage
  11. @property(nonatomic, readonly) NSString *containerPath;
  12. @end
  13. /* vim: set ft=objc ff=unix sw=4 ts=4 tw=80 expandtab: */