summaryrefslogtreecommitdiff
path: root/cpp/src/IceBT/PluginI.h
blob: 682576c6e4cbee3ebf2f5bfc9dd67cd13103aa47 (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
39
40
41
42
43
44
45
46
47
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#ifndef ICE_BT_PLUGIN_I_H
#define ICE_BT_PLUGIN_I_H

#include <Ice/CommunicatorF.h>
#include <IceBT/Plugin.h>
#include <IceBT/EngineF.h>

namespace IceBT
{

class PluginI : public Plugin
{
public:

    PluginI(const Ice::CommunicatorPtr&);

    //
    // From Ice::Plugin.
    //
    virtual void initialize();
    virtual void destroy();

    //
    // From IceBT::Plugin.
    //
#ifdef ICE_CPP11_MAPPING
    virtual void startDiscovery(const std::string& address,
                                std::function<void(const std::string& addr, const PropertyMap& props)>);
#else
    virtual void startDiscovery(const std::string&, const DiscoveryCallbackPtr&);
#endif
    virtual void stopDiscovery(const std::string&);

    virtual DeviceMap getDevices() const;

private:

    EnginePtr _engine;
};

}

#endif