diff options
Diffstat (limited to 'kpovmodeler/pmprismmemento.h')
-rw-r--r-- | kpovmodeler/pmprismmemento.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/kpovmodeler/pmprismmemento.h b/kpovmodeler/pmprismmemento.h new file mode 100644 index 00000000..a45f7fef --- /dev/null +++ b/kpovmodeler/pmprismmemento.h @@ -0,0 +1,71 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2002 by Andreas Zehender + email : zehender@kde.org +************************************************************************** + +************************************************************************** +* * +* 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 PMPRISMMEMENTO_H +#define PMPRISMMEMENTO_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "pmmemento.h" +#include "pmvector.h" +#include <qvaluelist.h> + + +/** + * Memento for @ref PMPrism + */ +class PMPrismMemento : public PMMemento +{ +public: + /** + * Creates a memento for the object originator + */ + PMPrismMemento( PMObject* originator ); + /** + * Deletes the memento + */ + virtual ~PMPrismMemento( ); + + /** + * Saves the prism points + */ + void setPrismPoints( const QValueList< QValueList<PMVector> >& v ); + /** + * Returns the prism points + */ + QValueList< QValueList<PMVector> > prismPoints( ) const + { + return m_prismPoints; + } + /** + * Returns true if the prism points were saved + */ + bool prismPointsSaved( ) const { return m_bPrismPointsSaved; } + +private: + /** + * The stored points + */ + QValueList< QValueList<PMVector> > m_prismPoints; + bool m_bPrismPointsSaved; +}; + +#endif |