First commit
This commit is contained in:
36
Classes/MySingleton.h
Executable file
36
Classes/MySingleton.h
Executable file
@@ -0,0 +1,36 @@
|
||||
//
|
||||
// MySingleton.h
|
||||
// IDSC
|
||||
//
|
||||
// Created by Norbert Schmidt on 02-02-11.
|
||||
// Copyright 2011 DDQ. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
|
||||
@interface MySingleton : NSObject {
|
||||
NSString *objectkeuze;
|
||||
double rechteklimming;
|
||||
double declinatie;
|
||||
NSString *objectName;
|
||||
NSString *objectConst;
|
||||
NSString *objectMagnitude;
|
||||
NSString *objectSize;
|
||||
NSString *objectNotes;
|
||||
NSString *objectType;
|
||||
}
|
||||
@property (nonatomic, retain) NSString* objectName;
|
||||
@property (nonatomic, retain) NSString* objectkeuze;
|
||||
@property (nonatomic, retain) NSString* objectMagnitude;
|
||||
@property (nonatomic, retain) NSString* objectSize;
|
||||
@property (nonatomic, retain) NSString* objectNotes;
|
||||
@property (nonatomic, retain) NSString* objectType;
|
||||
@property (nonatomic, retain) NSString* objectConst;
|
||||
@property(nonatomic, assign) double rechteklimming;
|
||||
@property(nonatomic, assign) double declinatie;
|
||||
|
||||
+(MySingleton*)sharedMySingleton;
|
||||
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user