phonebook.ice
来自「ICE-3.2 一个开源的中间件」· ICE 代码 · 共 54 行
ICE
54 行
// **********************************************************************//// Copyright (c) 2003-2007 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 PHONE_BOOK_ICE#define PHONE_BOOK_ICE#include <Ice/Identity.ice>module Demo{exception DatabaseException{ string message;};class Contact{ ["cpp:const"] idempotent string getName(); ["freeze:write"] idempotent void setName(string name) throws DatabaseException; ["cpp:const"] idempotent string getAddress(); ["freeze:write"] idempotent void setAddress(string address); ["cpp:const"] idempotent string getPhone(); ["freeze:write"] idempotent void setPhone(string phone); ["freeze:write"] void destroy() throws DatabaseException; string name; string address; string phone;};sequence<Contact*> Contacts;interface PhoneBook{ Contact* createContact() throws DatabaseException; ["cpp:const"] idempotent Contacts findContacts(string name) throws DatabaseException; void setEvictorSize(int size) throws DatabaseException; ["cpp:const"] idempotent void shutdown();};};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?