blob: 897028832a9019dcdf282918ad154a729d7ad9b5 [file] [log] [blame]
Alexander Afanasyev14b09482013-10-11 18:24:45 +02001/* -*- Mode: objc; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev6cacb972013-10-03 23:39:06 -07002/*
3 * @copyright See LICENCE for copyright and license information.
4 *
5 * @author Alexander Afanasyev <alexander.afanasyev@ucla.edu>
6 * @author Ilya Moiseenko <iliamo@ucla.edu>
7 */
8
9#import <Cocoa/Cocoa.h>
10#import "menu-delegate.h"
11
12@interface NdndStatusOperation : NSOperation
13{
14 MenuDelegate *m_delegate;
15}
16
17-(id)initWithDelegate:(MenuDelegate*)delegate;
18
19@end