EVOLUTION-MANAGER
Edit File: DB.ice
// ********************************************************************** // // Copyright (c) 2003-2013 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. // // ********************************************************************** #pragma once [["cpp:header-ext:h"]] /** * * Freeze provides automatic persistence for Ice servants. * **/ module Freeze { /** * * A database key, represented as a sequence of bytes. * **/ sequence<byte> Key; /** * * A database value, represented as a sequence of bytes. * **/ sequence<byte> Value; };