source: trunk/tools/common/kFileFormatBase.cpp@ 5531

Last change on this file since 5531 was 5531, checked in by bird, 24 years ago

Second iteration of the kFile* classes and interfaces.

File size: 910 bytes
Line 
1/* $Id: kFileFormatBase.cpp,v 1.4 2001-04-17 00:26:11 bird Exp $
2 *
3 * kFileFormatBase - Base class for kFile<format> classes.
4 *
5 * Copyright (c) 1999-2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11
12
13/*******************************************************************************
14* Header Files *
15*******************************************************************************/
16#include <os2.h>
17
18#include <malloc.h>
19#include <string.h>
20#include <stdio.h>
21
22#include "kFile.h"
23#include "kInterfaces.h"
24#include "kFileFormatBase.h"
25
26
27/**
28 * Dump function.
29 * @returns Successindicator.
30 * @param pOut Output file.
31 */
32BOOL kFileFormatBase::dump(kFile *pOut)
33{
34 pOut->printf("Sorry, dump() is not implemented for this file format.\n");
35 return FALSE;
36}
37
Note: See TracBrowser for help on using the repository browser.