123456789101112131415161718 |
- //
- // ProjectListWC.h
- // UUTUtils
- //
- // Created by zhuge on 2017/12/22.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- @class ProjectInfo;
- @interface ProjectListWC : NSWindowController<NSWindowDelegate>
- @property (strong) NSMutableArray<ProjectInfo*> *maBeans;
- @property (strong) NSArrayController *acBeans;
- @end
|