@@ -1,7 +1,7 @@ /* - * Copyright (c) 2008 - 2009 + * Copyright (c) 2008 - 2010 * Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the @@ -16,11 +16,11 @@ #import "OFStream.h" @class OFString; /** - * The OFFile class provides functions to read, write and manipulate files. + * \brief A class which provides functions to read, write and manipulate files. */ @interface OFFile: OFStream { FILE *fp; BOOL close; @@ -126,14 +126,11 @@ * It is not closed when the OFFile object is deallocated! */ - initWithFilePointer: (FILE*)fp; @end -@interface OFFileSingleton: OFFile -@end - /// An OFFile object for stdin extern OFFile *of_stdin; /// An OFFile object for stdout extern OFFile *of_stdout; /// An OFFile object for stderr extern OFFile *of_stderr;