1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// **********************************************************************
//
// Copyright (c) 2003-2015 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 CONTACT_I_H
#define CONTACT_I_H
#include <Contact.h>
class ContactDBI : public Demo::ContactDB
{
std::map<std::string, Demo::ContactPtr> _contacts;
public:
virtual void addContact(const std::string&, const IceUtil::Optional< Demo::NumberType>&,
const IceUtil::Optional< std::string>&, const IceUtil::Optional< Ice::Int>&, const Ice::Current&);
virtual void updateContact(const std::string&, const IceUtil::Optional< Demo::NumberType>&,
const IceUtil::Optional< std::string>&, const IceUtil::Optional< Ice::Int>&, const Ice::Current&);
virtual Demo::ContactPtr query(const std::string&, const Ice::Current&);
virtual IceUtil::Optional<std::string> queryNumber(const std::string&, const Ice::Current&);
virtual void queryDialgroup(const std::string&, IceUtil::Optional< Ice::Int>&, const Ice::Current&);
virtual void shutdown(const Ice::Current&);
};
#endif
|