ScanRefreshStock.h 399 B

12345678910111213141516171819202122232425
  1. //
  2. // ScanRefreshStock.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 6/30/23.
  6. // Copyright © 2023 United Software Applications, Inc. All rights reserved.
  7. //
  8. #ifndef ScanRefreshStock_h
  9. #define ScanRefreshStock_h
  10. @protocol IScanRefreshStock
  11. -(void) refreshStock;
  12. @end
  13. @interface ScanRefreshStock : UIViewController<IScanRefreshStock> {
  14. }
  15. @end
  16. #endif /* ScanRefreshStock_h */