comparison usr/src/cmd/man/src/util/nsgmls.src/include/Hash.h @ 0:c9caec207d52 b86

Initial porting based on b86
author Koji Uno <koji.uno@sun.com>
date Tue, 02 Jun 2009 18:56:50 +0900
parents
children 1a15d5aaf794
comparison
equal deleted inserted replaced
-1:000000000000 0:c9caec207d52
1 // Copyright (c) 1994 James Clark
2 // See the file COPYING for copying permission.
3 #pragma ident "@(#)Hash.h 1.4 00/07/17 SMI"
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 class SP_API Hash {
18 public:
19 static unsigned long hash(const StringC &);
20 };
21
22 #ifdef SP_NAMESPACE
23 }
24 #endif
25
26 #endif /* not Hash_INCLUDED */