summaryrefslogtreecommitdiff
path: root/cpp/src/IceBT/PluginI.h
blob: a8589e5a38cd4ee2fbd43480843b8b102904c061 (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
48
49
50
51
52
// **********************************************************************
//
// Copyright (c) 2003-2016 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 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