@@ -27,10 +27,15 @@ #endif OFFile *of_stdin = nil; OFFile *of_stdout = nil; OFFile *of_stderr = nil; + +/// \cond internal +@interface OFFileSingleton: OFFile +@end +/// \endcond @implementation OFFile + (void)load { if (self != [OFFile class]) @@ -222,10 +227,11 @@ return self; } @end +/// \cond internal @implementation OFFileSingleton - initWithPath: (OFString*)path mode: (OFString*)mode { @throw [OFNotImplementedException newWithClass: isa @@ -256,5 +262,6 @@ @throw [OFNotImplementedException newWithClass: isa selector: _cmd]; [super dealloc]; /* Get rid of stupid warning */ } @end +/// \endcond