ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/System8/s8/S8Tree/interface/S8Tools.h
Revision: 1.2
Committed: Tue May 24 16:15:11 2011 UTC (13 years, 11 months ago) by samvel
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
Remove the S8Tree code

File Contents

# Content
1 /**
2 * Tools
3 * s8
4 *
5 * Created by Samvel Khalatian on Nov 9, 2010
6 * Copyright 2010, All rights reserved
7 */
8
9 #ifndef S8_TOOLS
10 #define S8_TOOLS
11
12 #include <string>
13
14 #include <boost/functional/hash.hpp>
15
16 namespace s8
17 {
18 namespace tools
19 {
20 typedef unsigned int Hash;
21
22 typedef boost::hash<std::string> HashGenerator;
23
24 HashGenerator make_hash;
25 }
26 }
27
28 #endif