// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef SERVER_BLOBJECT_H #define SERVER_BLOBJECT_H #include namespace Glacier2 { class ServerBlobject final : public Glacier2::Blobject { public: ServerBlobject(std::shared_ptr, std::shared_ptr); void ice_invokeAsync(std::pair inEncaps, std::function&)> response, std::function error, const Ice::Current& current) override; }; } #endif