/* * 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 #include #include /** The class that stores the values of the variables. */ template class VarHashEntryImpl : public VarHashEntry { 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 VarHashEntryImpl::VarHashEntryImpl(const TYPE &value) : _value(value) { } template const TYPE &VarHashEntryImpl::getValue() const { return _value; } template void VarHashEntryImpl::setValue(const TYPE &value) { _value = value; } #endif