From 8362bf63dea22bbf6736609b0f49c152f975eb63 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 20 Jan 2010 01:29:50 +0000 Subject: Added old abandoned KDE3 version of koffice git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kugar/lib/mcalcobject.cpp | 66 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 kugar/lib/mcalcobject.cpp (limited to 'kugar/lib/mcalcobject.cpp') diff --git a/kugar/lib/mcalcobject.cpp b/kugar/lib/mcalcobject.cpp new file mode 100644 index 00000000..fbb7345f --- /dev/null +++ b/kugar/lib/mcalcobject.cpp @@ -0,0 +1,66 @@ +/*************************************************************************** + mcalcobject.cpp - Kugar report calculation field object + ------------------- + begin : Thu Sep 2 1999 + copyright : (C) 1999 by Mutiny Bay Software + email : info@mutinybaysoftware.com +***************************************************************************/ + +#include "mcalcobject.h" + +namespace Kugar +{ + +/** Constructor */ +MCalcObject::MCalcObject() : MFieldObject() +{ + // Set the default calculation type + calcType = MCalcObject::Count; +} + +/** Copy constructor */ +MCalcObject::MCalcObject( const MCalcObject& mCalcObject ) : MFieldObject( ( MFieldObject & ) mCalcObject ) +{ + copy( &mCalcObject ); +} + +/** Assignment operator */ +MCalcObject MCalcObject::operator=( const MCalcObject& mCalcObject ) +{ + if ( &mCalcObject == this ) + return * this; + + // Copy the derived class's data + copy( &mCalcObject ); + + // Copy the base class's data + ( ( MFieldObject & ) * this ) = mCalcObject; + + return *this; +} + +/** Destructor */ +MCalcObject::~MCalcObject() +{} + +/** Sets the field's calculation type */ +void MCalcObject::setCalculationType( int type ) +{ + calcType = type; +} + +/** Returns the field's calculation type */ +int MCalcObject::getCalculationType() +{ + return calcType; +} + +/** Copies member data from one object to another. + Used by the copy constructor and assignment operator */ +void MCalcObject::copy( const MCalcObject* mCalcObject ) +{ + // Copy the fields's calculation type + calcType = mCalcObject->calcType; +} + +} -- cgit v1.2.1