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