ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / test / IceGrid / deployer / TestI.h
blob17b7f58ad13bb06ea6c58d1e43afbba138b2551c
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
10 #ifndef TEST_I_H
11 #define TEST_I_H
13 #include <Test.h>
15 class TestI : public ::Test::TestIntf
17 public:
19 TestI(const Ice::PropertiesPtr&);
21 virtual void shutdown(const Ice::Current&);
22 virtual std::string getProperty(const std::string&, const Ice::Current&);
24 private:
26 Ice::PropertiesPtr _properties;
29 #endif