1// Copyright (c) 1994, 1995 James Clark
2// See the file COPYING for copying permission.
3#pragma ident	"%Z%%M%	%I%	%E% SMI"
4
5#ifndef CatalogEntry_INCLUDED
6#define CatalogEntry_INCLUDED 1
7
8#include "Location.h"
9#include "StringC.h"
10#include <stddef.h>
11
12#ifdef SP_NAMESPACE
13namespace SP_NAMESPACE {
14#endif
15
16struct CatalogEntry {
17  StringC to;
18  Location loc;
19  size_t catalogNumber;
20  size_t baseNumber;
21  size_t serial;
22};
23
24#ifdef SP_NAMESPACE
25}
26#endif
27
28#endif /* not CatalogEntry_INCLUDED */
29