ObjFW  Artifact [c0e0f8d0e9]

Artifact c0e0f8d0e999ffb304573d93b9ad1d206c7de734db9a091f0064d3600639560e:


/*
 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013
 *   Jonathan Schleifer <js@webkeks.org>
 *
 * All rights reserved.
 *
 * This file is part of ObjFW. It may be distributed under the terms of the
 * Q Public License 1.0, which can be found in the file LICENSE.QPL included in
 * the packaging of this file.
 *
 * Alternatively, it may be distributed under the terms of the GNU General
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

@class OFDataArray;

/*!
 * @brief A protocol implemented by classes that support encoding to a
 *	  BinaryPack representation.
 */
@protocol OFBinaryPackRepresentation
/*!
 * @brief Returns the BinaryPack representation of the object as an OFDataArray.
 *
 * @return The BinaryPack representation of the object as an OFDataArray.
 */
- (OFDataArray*)binaryPackRepresentation;
@end