60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2001-2006
|
|
* DecisionSoft Limited. All rights reserved.
|
|
* Copyright (c) 2004-2006
|
|
* Progress Software Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2006
|
|
* Oracle. All rights reserved.
|
|
*
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* $Id: VarHashEntryImpl.hpp,v 1.7 2006/11/01 16:37:12 jpcs Exp $
|
|
*/
|
|
|
|
#ifndef _VARHASHENTRYIMPL_HPP
|
|
#define _VARHASHENTRYIMPL_HPP
|
|
|
|
#include <xqilla/framework/XQillaExport.hpp>
|
|
#include <xqilla/runtime/Sequence.hpp>
|
|
#include <xqilla/context/VarHashEntry.hpp>
|
|
|
|
/** The class that stores the values of the variables. */
|
|
template<class TYPE>
|
|
class VarHashEntryImpl : public VarHashEntry<TYPE>
|
|
{
|
|
public:
|
|
/// Meaningfull constructor
|
|
VarHashEntryImpl(const TYPE &value);
|
|
|
|
/** Gets the value of the variable (overload in derived classes for
|
|
special behaviour) */
|
|
virtual const TYPE &getValue() const;
|
|
|
|
/** Sets the value of the variable (overload in derived classes for
|
|
special behaviour) */
|
|
virtual void setValue(const TYPE &value);
|
|
|
|
protected:
|
|
TYPE _value;
|
|
};
|
|
|
|
template<class TYPE>
|
|
VarHashEntryImpl<TYPE>::VarHashEntryImpl(const TYPE &value)
|
|
: _value(value)
|
|
{
|
|
}
|
|
|
|
template<class TYPE>
|
|
const TYPE &VarHashEntryImpl<TYPE>::getValue() const
|
|
{
|
|
return _value;
|
|
}
|
|
|
|
template<class TYPE>
|
|
void VarHashEntryImpl<TYPE>::setValue(const TYPE &value)
|
|
{
|
|
_value = value;
|
|
}
|
|
|
|
#endif
|
|
|