1 /*------------------------------------------------------------------------------
 2 Name:      GetReturnKey.cpp
 3 Project:   xmlBlaster.org
 4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
 5 ------------------------------------------------------------------------------*/
 6 
 7 #include <client/key/GetReturnKey.h>
 8 #include <util/Global.h>
 9 
10 using namespace std;
11 using namespace org::xmlBlaster::util;
12 using namespace org::xmlBlaster::util::key;
13 
14 namespace org { namespace xmlBlaster { namespace client { namespace key {
15 
16 GetReturnKey::GetReturnKey(Global& global) 
17    : UpdateKey(global)
18 {
19 }
20 
21 GetReturnKey::GetReturnKey(Global& global, const MsgKeyData& data) 
22    : UpdateKey(global, data)
23 {
24 }
25 
26 GetReturnKey::GetReturnKey(const GetReturnKey& key)
27    : UpdateKey(key)
28 {
29 }
30 
31 GetReturnKey& GetReturnKey::operator =(const GetReturnKey& key)
32 {
33    msgKeyData_ = key.msgKeyData_;
34    return *this;
35 }
36 
37 bool GetReturnKey::isInternal() const
38 {
39    return msgKeyData_.isInternal();
40 }
41 
42 }}}} // namespace


syntax highlighted by Code2HTML, v. 0.9.1