ProjectListWC.h 354 B

123456789101112131415161718
  1. //
  2. // ProjectListWC.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/22.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class ProjectInfo;
  10. @interface ProjectListWC : NSWindowController<NSWindowDelegate>
  11. @property (strong) NSMutableArray<ProjectInfo*> *maBeans;
  12. @property (strong) NSArrayController *acBeans;
  13. @end