Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / tests / Cache_Map_Manager_Test.h
blob31b2569f23e9c1483e18c982704e71b534e9c517
1 /* -*- C++ -*- */
3 //=============================================================================
4 /**
5 * @file Cache_Map_Manager_Test.h
7 * Define class needed for generating templates.
9 * @author Kirthika Parameswaran <kirthika@cs.wustl.edu>
11 //=============================================================================
14 #ifndef __ACE_CACHE_MAP_MANAGER_TEST_H
15 #define __ACE_CACHE_MAP_MANAGER_TEST_H
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
18 # pragma once
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
21 class Hash_Key
23 public:
24 u_long operator () (size_t t) const
26 // Simply returns t
27 return static_cast<u_long> (t);
31 #endif /* __ACE_CACHE_MAP_MANAGER_TEST_T */