Index: configure.ac ================================================================== --- configure.ac +++ configure.ac @@ -1,6 +1,6 @@ -AC_INIT(objfw, 0.1, js@webkeks.org) +AC_INIT(ObjFW, 0.1, js@webkeks.org) AC_CONFIG_SRCDIR(src) AC_CANONICAL_HOST AC_PROG_CC @@ -204,9 +204,9 @@ AC_SUBST(TESTS, "tests") fi BUILDSYS_TOUCH_DEPS -AC_SUBST(PACKAGE, objfw) +AC_SUBST(PACKAGE, ObjFW) AC_CONFIG_FILES([buildsys.mk extra.mk objfw-config]) AC_CONFIG_HEADERS(config.h) AC_OUTPUT ADDED src/ObjFW.h Index: src/ObjFW.h ================================================================== --- src/ObjFW.h +++ src/ObjFW.h @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2008 - 2009 + * Jonathan Schleifer "js@webkeks.org" + * + * All rights reserved. + * + * This file is part of libobjfw. It may be distributed under the terms of the + * Q Public License 1.0, which can be found in the file LICENSE included in + * the packaging of this file. + */ + +#import "OFObject.h" +#import "OFExceptions.h" + +#import "OFAutoreleasePool.h" +#import "OFString.h" + +#import "OFDataArray.h" +#import "OFArray.h" + +#import "OFList.h" + +#import "OFDictionary.h" +#import "OFIterator.h" + +#import "OFNumber.h" + +#import "OFStream.h" + +#import "OFFile.h" + +#import "OFSocket.h" +#import "OFTCPSocket.h" + +#import "OFHashes.h" +#import "OFThread.h" +#import "OFXMLElement.h" + +#ifdef OF_PLUGINS +#import "OFPlugin.h" +#endif + +#import "OFMacros.h" +#import "asprintf.h" DELETED src/objfw.h Index: src/objfw.h ================================================================== --- src/objfw.h +++ src/objfw.h @@ -1,44 +0,0 @@ -/* - * Copyright (c) 2008 - 2009 - * Jonathan Schleifer "js@webkeks.org" - * - * All rights reserved. - * - * This file is part of libobjfw. It may be distributed under the terms of the - * Q Public License 1.0, which can be found in the file LICENSE included in - * the packaging of this file. - */ - -#import "OFObject.h" -#import "OFExceptions.h" - -#import "OFAutoreleasePool.h" -#import "OFString.h" - -#import "OFDataArray.h" -#import "OFArray.h" - -#import "OFList.h" - -#import "OFDictionary.h" -#import "OFIterator.h" - -#import "OFNumber.h" - -#import "OFStream.h" - -#import "OFFile.h" - -#import "OFSocket.h" -#import "OFTCPSocket.h" - -#import "OFHashes.h" -#import "OFThread.h" -#import "OFXMLElement.h" - -#ifdef OF_PLUGINS -#import "OFPlugin.h" -#endif - -#import "OFMacros.h" -#import "asprintf.h"