RosettaCodeData/Task/Singleton/Objective-C/singleton-1.m

10 lines
129 B
Mathematica
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
// SomeSingleton.h
@interface SomeSingleton : NSObject
{
// any instance variables
}
2013-06-05 21:47:54 +00:00
+ (SomeSingleton *)sharedInstance;
2013-04-11 01:07:29 -07:00
@end