blob: e0add5715ec805e0dc9dad0fe2f9d262e70ece47 (
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
|
// **********************************************************************
//
// 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 <occi.h>
#include <DbTypes.h>
class EmpI : public HR::Emp
{
public:
EmpI(oracle::occi::Environment* env,
oracle::occi::StatelessConnectionPool*, 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&);
//
// Throws Ice::ObjectNotExistException when not found
//
static oracle::occi::Ref<EMP_T> getRef(oracle::occi::Connection* con, int empno);
private:
oracle::occi::Environment* _env;
oracle::occi::StatelessConnectionPool* _pool;
const std::string _empCategory;
const std::string _deptCategory;
};
#endif
|