blob: 6780b961b0c9dbe8cb5593f68a6733714f0a7dc0 (
plain)
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
|
// **********************************************************************
//
// 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 EMPI_H
#define EMPI_H
#include <HR.h>
#include <CurrentSqlContext.h>
class EmpI : public HR::Emp
{
public:
EmpI(const CurrentSqlContext&, const std::string&, const std::string&);
virtual void ice_ping(const Ice::Current&) const;
virtual HR::EmpDesc getDesc(const Ice::Current&);
virtual void updateDesc(const HR::EmpDesc& newDesc, const Ice::Current&);
virtual void remove(const Ice::Current&);
private:
const CurrentSqlContext _currentCtx;
const std::string _empCategory;
const std::string _deptCategory;
};
#endif
|