blob: 215b7fa40f5ed058c9c9e80112f45ebf52721dbc (
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) 2001
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#ifndef ICE_PACK_LOCATOR_I_H
#define ICE_PACK_LOCATOR_I_H
#include <IcePack/Internal.h>
#include <Ice/Locator.h>
namespace IcePack
{
class LocatorI : public ::Ice::Locator
{
public:
LocatorI(const AdapterRegistryPtr&, const ::Ice::LocatorRegistryPrx&);
virtual ::Ice::ObjectPrx findAdapterByName(const std::string&, const ::Ice::Current&) const;
virtual ::Ice::LocatorRegistryPrx getRegistry(const ::Ice::Current&) const;
private:
AdapterRegistryPtr _adapterRegistry;
Ice::LocatorRegistryPrx _locatorRegistry;
};
}
#endif
|