blob: e8721db8fb156a40cb511d3e9880373d145a5476 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef CURRENT_DATABASE_H
#define CURRENT_DATABASE_H
#include <Ice/Ice.h>
#include <Database.h>
#include <list>
//
// Provides a Database object for each thread.
//
class CurrentDatabase
{
public:
CurrentDatabase(const Ice::CommunicatorPtr&, const std::string&, const std::string&);
~CurrentDatabase();
Database& get();
private:
const Ice::CommunicatorPtr _communicator;
const std::string _envName;
const std::string _dbName;
IceUtil::Mutex _dbListMutex;
std::list<Database*> _dbList;
};
#endif
|