OSDN Git Service

Update cross tools prefix
[uclinux-h8/uClinux-dist.git] / openswan / osxApp / ConnectionsDB.h
1 //
2 //  ConnectionsDB.h
3 //  Openswan
4 //
5 //  Created by Jose Quaresma on 19/6/09.
6 //  Copyright 2009 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface ConnectionsDB : NSObject <NSCoding> {
12         NSMutableArray* connDB;
13 }
14
15 @property (readwrite, retain) NSMutableArray* connDB;
16
17 + (ConnectionsDB*)sharedInstance;
18
19 @end