blob: 9dfba44561ca03571bfc873ae6551dd16cceaac8 (
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
39
40
41
42
43
44
45
46
47
|
// **********************************************************************
//
// Copyright (c) 2003-2006 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 <occi.h>
#include <DbTypes.h>
class DeptI : public HR::Dept
{
public:
DeptI(oracle::occi::Environment* env,
oracle::occi::StatelessConnectionPool*, 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 updateDesc(const HR::DeptDesc& newDesc, 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&);
//
// Throws Ice::ObjectNotExistException when not found
//
static oracle::occi::Ref<DEPT_T> getRef(oracle::occi::Connection* con, int deptno);
private:
oracle::occi::Environment* _env;
oracle::occi::StatelessConnectionPool* _pool;
const std::string _empCategory;
};
#endif
|