ProgressDialog.h 372 B

12345678910111213141516171819
  1. //
  2. // ProgressDialog.h
  3. // CardinalEMVCoSDK
  4. //
  5. // Copyright © 2018 Cardinal Commerce. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. /**
  9. * The processing screen that displays the Directory Server logo, and a graphical element to indicate that an activity is being processed.
  10. */
  11. @interface ProgressDialog : NSObject
  12. - (void) start;
  13. - (void) stop;
  14. @end