| 12345678910111213141516171819202122232425 |
- //
- // ScanRefreshStock.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 6/30/23.
- // Copyright © 2023 United Software Applications, Inc. All rights reserved.
- //
- #ifndef ScanRefreshStock_h
- #define ScanRefreshStock_h
- @protocol IScanRefreshStock
-
- -(void) refreshStock;
-
- @end
- @interface ScanRefreshStock : UIViewController<IScanRefreshStock> {
-
- }
-
- @end
- #endif /* ScanRefreshStock_h */
|