EVOLUTION-MANAGER
Edit File: CatalogData.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"]] module Freeze { /** * * The catalog keeps information about Freeze Maps and Freeze * evictors in a Berkeley Db environment. It is used by FreezeScript. * **/ struct CatalogData { /** * * True if this entry describes an evictor database, false if it describes a map database. * **/ bool evictor; /** * * The Slice type for the database key. * **/ string key; /** * * The Slice type for the database value. * **/ string value; }; };