ObjFW  Check-in [0b49311db1]

Overview
Comment:Fix missing include.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0b49311db127c613bc07ff6b8da4f10fb99369e698d5f28ef1613e92c27fa39b
User & Date: js on 2008-10-26 02:49:40
Other Links: manifest | tags
Context
2008-10-26
12:05
Actually test OFXMLFactory. check-in: 58e11df891 user: js tags: trunk
02:49
Fix missing include. check-in: 0b49311db1 user: js tags: trunk
02:47
Forgot call to - free. check-in: b2df7acabb user: js tags: trunk
Changes

Modified src/OFFile.h from [f9dde14242] to [90768e82ac].

1
2
3
4
5
6
7
8
9
10
11
12
13


14
15
16
17
18
19
20
/*
 * Copyright (c) 2008
 *   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 <stdio.h>
#import <stdint.h>



#import "OFObject.h"

@interface OFFile: OFObject
{
	FILE *fp;
}













>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2008
 *   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 <stdio.h>
#import <stdint.h>

#import <sys/types.h>

#import "OFObject.h"

@interface OFFile: OFObject
{
	FILE *fp;
}