blob: bb2dc3db57f47d65d93d7dda71ee43c7520e70eb (
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
35
36
37
38
|
// **********************************************************************
//
// Copyright (c) 2003-2009 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 DEPTI_H
#define DEPTI_H
#include <HR.h>
#include <CurrentSqlContext.h>
class DeptI : public HR::Dept
{
public:
DeptI(const CurrentSqlContext&, const std::string&);
virtual void ice_ping(const Ice::Current&) const;
virtual HR::EmpPrx createEmp(int, const HR::EmpDesc&, const Ice::Current&);
virtual HR::DeptDesc getDesc(const Ice::Current&);
virtual void updateField(const std::string&, const std::string&, const Ice::Current&);
virtual void remove(const Ice::Current&);
virtual HR::EmpPrxSeq findAll(const Ice::Current&);
virtual HR::EmpPrxSeq findByName(const std::string&, const Ice::Current&);
private:
const CurrentSqlContext _currentCtx;
const std::string _empCategory;
};
#endif
|