Artifact f72593c636161222bf942a8a1ff0625062540d24cb70dab3aee7becb38a02716:
- File
tests/OFPlugin/TestPlugin/TestPlugin.h
— part of check-in
[179174571e]
at
2009-04-19 17:06:46
on branch trunk
— Don't use forwarding for OFPlugin.
This is faster and we don't rely on forwarding which is broken in
both, the GNU and the Apple runtime. Eventually, there will be an
implementation for forwarding that does work around the runtime bugs,
but still, an implementation of OFPlugin without forwarding makes more
sense. (user: js, size: 367) [annotate] [blame] [check-ins using]
/* * 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 "OFPlugin.h" @interface TestPlugin: OFPlugin - (void)test; @end