summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/ID_Pool_T.cpp
blob: f8364b701273808ac72ad52541389b6c2a222e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// $Id$

#ifndef ID_POOL_T_C
#define ID_POOL_T_C

#include "ID_Pool_T.h"

#if !defined (__ACE_INLINE__)
#include "ID_Pool_T.i"
#endif /* __ACE_INLINE__ */

// @@ Pradeep: please complete the implementation,
template <class ID_TYPE> void
ID_Pool<ID_TYPE>::put (ID_TYPE /* id */)
{
  // TBD:
}

template <class ID_TYPE> ID_TYPE
ID_Pool<ID_TYPE>::get (void)
{
   return ++id_;
}

#endif /* ID_POOL_T_C */