blob: eb92c1504b18d54c7b54a42141b13e8e687c293f (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2014 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_WS_PLUGIN_H
#define ICE_WS_PLUGIN_H
#include <Ice/Plugin.h>
#ifndef ICE_WS_API
# ifdef ICE_WS_API_EXPORTS
# define ICE_WS_API ICE_DECLSPEC_EXPORT
# else
# define ICE_WS_API ICE_DECLSPEC_IMPORT
# endif
#endif
namespace IceWS
{
class Plugin : public Ice::Plugin
{
public:
// TODO
};
typedef IceUtil::Handle<Plugin> PluginPtr;
}
#endif
|