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

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

Made virtual destructor.

File size: 953 bytes
Line 
1/* $Id: kFileFormatBase.cpp,v 1.5 2001-06-22 17:07:47 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
38
39kFileFormatBase::~kFileFormatBase()
40{
41
42}
43
Note: See TracBrowser for help on using the repository browser.