summaryrefslogtreecommitdiffstats
blob: 13be6b99bec77f616284af3ff0b80ad7d311b217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <Cocoa/Cocoa.h>
#include <boost/function.hpp>

class CocoaMenulet;

@interface CocoaAction : NSObject {
	boost::function<void ()>* function;
}

- (id) initWithFunction: (boost::function<void()>*) f;
- (void) doAction: (id) sender;

@end