📄 phonebook.ice
字号:
// **********************************************************************//// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -