// ********************************************************************** // // Copyright (c) 2003-2015 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 TEST_I_H #define TEST_I_H #include class TestFacetI : virtual public ::Test::TestFacet, virtual public Ice::PropertiesAdminUpdateCallback, IceUtil::Monitor { public: TestFacetI(); virtual Ice::PropertyDict getChanges(const Ice::Current&); virtual void updated(const Ice::PropertyDict&); private: Ice::PropertyDict _changes; bool _called; }; typedef IceUtil::Handle TestFacetIPtr; #endif