Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
include
osl
hash
hashCollision.h
Go to the documentation of this file.
1
/* hashCollision.h
2
*/
3
#ifndef _HASHCOLLISION_H
4
#define _HASHCOLLISION_H
5
6
#include <stdexcept>
7
8
namespace
osl
9
{
10
namespace
hash
11
{
15
struct
HashCollision
: std::runtime_error
16
{
17
HashCollision
() : std::runtime_error(
"hash collision"
)
18
{
19
}
20
};
21
}
// namespace hash
22
using
hash::HashCollision;
23
}
// namespace osl
24
25
26
#endif
/* _HASHCOLLISION_H */
27
// ;;; Local Variables:
28
// ;;; mode:c++
29
// ;;; c-basic-offset:2
30
// ;;; End:
Generated on Sun Jul 21 2013 13:37:24 by
1.8.4