You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kmymoney/kmymoney2/mymoney/mymoneyobject.h

126 lines
3.9 KiB

/***************************************************************************
mymoneyobject.h
-------------------
copyright : (C) 2005 by Thomas Baumgart
email : ipwizard@users.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef MYMONEYOBJECT_H
#define MYMONEYOBJECT_H
// ----------------------------------------------------------------------------
// TQt Includes
#include <tqstring.h>
#include <tqdom.h>
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// Project Includes
#include <kmymoney/export.h>
/**
* @author Thomas Baumgart
*/
/**
* This class represents the base class of all MyMoney objects.
*/
class KMYMONEY_EXPORT MyMoneyObject
{
public:
/**
* This is the constructor for the MyMoneyObject object
*/
MyMoneyObject();
/**
* This is the destructor for the MyMoneyObject object
*/
virtual ~MyMoneyObject();
/**
* This method retrieves the id of the object
*
* @return ID of object
*/
const TQString& id(void) const { return m_id; };
/**
* This method clears the id of the object
*/
void clearId(void);
/**
* This method must be provided by all derived objects. It returns,
* a @p true if the object is referencing the one requested by the
* parameter @p id. If it does not, this method returns @p false.
*
* @param id id of the object to be checked for references
* @retval true This object references object with id @p id.
* @retval false This object does not reference the object with id @p id.
*/
virtual bool hasReferenceTo(const TQString& id) const = 0;
/**
* This method creates a TQDomElement for the @p document
* under the parent node @p parent.
*
* @param document reference to TQDomDocument
* @param parent reference to TQDomElement parent node
*/
virtual void writeXML(TQDomDocument& document, TQDomElement& parent) const = 0;
bool operator == (const MyMoneyObject& right) const;
static const TQString& emptyId(void);
protected:
/**
* This contructor assigns the id to the MyMoneyObject
*
* @param id ID of object
*/
MyMoneyObject(const TQString& id);
/**
* This contructor reads the id from the @p id attribute of the
* TQDomElement.
*
* @param node const reference to the TQDomElement from which to
* obtain the id of the object
* @param forceId flag to be able to suppress enforcement of an id
* defaults to true which requires the node to have an
* attribute with name @p id. If it does not contain such
* an attribute, an exception will be thrown. If @p forceId
* is false, no check for an id is performed. This will be
* used by objects, which are stored w/o id (eg. splits,
* transactions within schedules)
*/
MyMoneyObject(const TQDomElement& node, const bool forceId = true);
void setId(const TQString& id) /* __attribute__ ((deprecated)) */;
/**
* This method writes out the members contained in this object.
*/
void writeBaseXML(TQDomDocument& document, TQDomElement& el) const;
protected:
TQString m_id;
static const TQString m_emptyId;
};
#endif