mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 21:51:06 +03:00
20 lines
455 B
Objective-C
20 lines
455 B
Objective-C
#ifndef APP_MAC_MAIN_APP_H
|
|
#define APP_MAC_MAIN_APP_H
|
|
|
|
#include "app/mac/MacClient.h"
|
|
#include <AppKit/AppKit.h>
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@interface MainApp : NSObject
|
|
|
|
@property (retain) NSTimer* m_pollTimer;
|
|
@property bool isPolling;
|
|
|
|
@property (retain) IBOutlet NSMenuItem* captureFrameMenuItem;
|
|
@property (retain) IBOutlet NSMenuItem* showBatchViewerMenuItem;
|
|
@property (retain) IBOutlet NSMenuItem* showGLLayerSetupMenuItem;
|
|
|
|
@end
|
|
|
|
#endif
|