Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / programs / nsgmls / Hash.h
1 /* $XConsortium: Hash.h /main/1 1996/07/29 16:52:46 cde-hp $ */
2 // Copyright (c) 1994 James Clark
3 // See the file COPYING for copying permission.
4
5 #ifndef Hash_INCLUDED
6 #define Hash_INCLUDED 1
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 #include "StringC.h"
12
13 #ifdef SP_NAMESPACE
14 namespace SP_NAMESPACE {
15 #endif
16
17 #ifndef SP_API
18 #define SP_API /* as nothing */
19 #endif
20
21 class SP_API Hash {
22 public:
23   static unsigned long hash(const StringC &);
24 };
25
26 #ifdef SP_NAMESPACE
27 }
28 #endif
29
30 #endif /* not Hash_INCLUDED */