summaryrefslogtreecommitdiff
path: root/TAO/tests/Transport_Cache_Manager/mock_ps.h
blob: 6c6631d8c077d7d92c76514c52f5ede0070519d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// $Id$

class mock_ps
{
public:
  mock_ps (int max) : maximum_ (max) {}
  void update_item (mock_transport*) {}
  int cache_maximum () { return this->maximum_;}
private:
  int maximum_;
};