2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
556 B

  1. //
  2. // SCManiphestTicketCreator.h
  3. // SCCamera
  4. //
  5. // Created by Michel Loenngren on 4/16/18.
  6. //
  7. #import <Foundation/Foundation.h>
  8. /**
  9. Protocol for filing jira tickets and beta s2r.
  10. */
  11. @protocol SCManiphestTicketCreator
  12. - (void)createAndFile:(NSData *)image
  13. creationTime:(long)reportCreationTime
  14. description:(NSString *)bugDescription
  15. email:(NSString *)otherEmail
  16. project:(NSString *)projectName
  17. subproject:(NSString *)subprojectName;
  18. - (void)createAndFileBetaReport:(NSString *)msg;
  19. @end