Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / ACE / tests / Cache_Map_Manager_Test.h
blob24cf916479a961dc8eace0cc36179bcd6a22859e
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file Cache_Map_Manager_Test.h
7 * Define class needed for generating templates. IBM C++ requires this to
8 * be in its own file for auto template instantiation.
10 * @author Kirthika Parameswaran <kirthika@cs.wustl.edu>
12 //=============================================================================
15 #ifndef __ACE_CACHE_MAP_MANAGER_TEST_H
16 #define __ACE_CACHE_MAP_MANAGER_TEST_H
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 class Hash_Key
24 public:
25 u_long operator () (size_t t) const
27 // Simply returns t
28 return static_cast<u_long> (t);
32 #endif /* __ACE_CACHE_MAP_MANAGER_TEST_T */