10 lines
129 B
Mathematica
10 lines
129 B
Mathematica
|
|
// SomeSingleton.h
|
||
|
|
@interface SomeSingleton : NSObject
|
||
|
|
{
|
||
|
|
// any instance variables
|
||
|
|
}
|
||
|
|
|
||
|
|
+ (SomeSingleton *)sharedInstance;
|
||
|
|
|
||
|
|
@end
|