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
24 lines
556 B
//
|
|
// SCManiphestTicketCreator.h
|
|
// SCCamera
|
|
//
|
|
// Created by Michel Loenngren on 4/16/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
Protocol for filing jira tickets and beta s2r.
|
|
*/
|
|
@protocol SCManiphestTicketCreator
|
|
|
|
- (void)createAndFile:(NSData *)image
|
|
creationTime:(long)reportCreationTime
|
|
description:(NSString *)bugDescription
|
|
email:(NSString *)otherEmail
|
|
project:(NSString *)projectName
|
|
subproject:(NSString *)subprojectName;
|
|
|
|
- (void)createAndFileBetaReport:(NSString *)msg;
|
|
|
|
@end
|