blob: f25e6c12799d4580fb51d40adb04df0abe32989f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
#ifndef BACKEND_I_H
#define BACKEND_I_H
#include <Backend.h>
class BackendI : public Test::Backend
{
public:
virtual void shutdown(const Ice::Current&);
};
#endif
|