TSIncludeInstruction.h 825 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * Name: TechSupport
  3. * Type: iOS framework
  4. * Desc: iOS framework to assist in providing support for and receiving issue
  5. * reports and feedback from users.
  6. *
  7. * Author: Lance Fetters (aka. ashikase)
  8. * License: LGPL v3 (See LICENSE file for details)
  9. */
  10. #import "TSInstruction.h"
  11. typedef enum {
  12. TSIncludeInstructionTypeFile,
  13. TSIncludeInstructionTypePlist,
  14. TSIncludeInstructionTypeCommand
  15. } TSIncludeInstructionType;
  16. @interface TSIncludeInstruction : TSInstruction
  17. @property(nonatomic, readonly) NSData *content;
  18. @property(nonatomic, readonly) NSString *command;
  19. @property(nonatomic, readonly) NSString *filepath;
  20. @property(nonatomic, readonly) NSString *mimeType;
  21. @property(nonatomic, readonly) TSIncludeInstructionType includeType;
  22. @end
  23. /* vim: set ft=objc ff=unix sw=4 ts=4 tw=80 expandtab: */