// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_GRID_ADMIN_ROUTER_H #define ICE_GRID_ADMIN_ROUTER_H #include #include namespace IceGrid { // // An Admin Router routes requests to an admin object // class AdminRouter : public Ice::BlobjectArrayAsync { protected: AdminRouter(const std::shared_ptr&); void invokeOnTarget(const std::shared_ptr&, const std::pair&, std::function&)>&&, std::function&&, const Ice::Current&); const std::shared_ptr _traceLevels; }; } #endif