summaryrefslogtreecommitdiff
path: root/cpp/demo/Database/Oracle/proc/EmpI.h
blob: 846f4b44a4a1897725b48bef5a5c9cd67515e703 (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
// **********************************************************************
//
// Copyright (c) 2003-2012 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 updateField(const std::string&, const std::string&, const Ice::Current&);
    virtual void updateMgr(int, const Ice::Current&);
    virtual void updateDept(int, const Ice::Current&);
    virtual void remove(const Ice::Current&);

private:
    const CurrentSqlContext _currentCtx;
    const std::string _empCategory;
    const std::string _deptCategory;
};

#endif