Your IP : 216.73.216.48
/* This file is part of the KDE project
Copyright (C) 2006 Jan Hambrecht <jaham@gmx.net>
Copyright (C) 2006, 2009 Thomas Zander <zander@kde.org>
Copyright (C) 2008 C. Boemann <cbo@boemann.dk>
Copyright (C) 2008 Thorsten Zachmann <zachmann@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KODATACENTER_H
#define KODATACENTER_H
#include <QtGlobal>
#include "flake_export.h"
class KoShapeSavingContext;
class KoStore;
class KoXmlWriter;
/**
* The data center is for now just a sort of void pointer.
* The data centers can be stuff like image collection, or stylemanager.
* This abstraction is done so that shapes can get access to any possible type of data center.
* The KoShapeBasedDocumentBase has a method that returns a map of data centers
*/
class FLAKE_EXPORT KoDataCenterBase
{
public:
KoDataCenterBase();
virtual ~KoDataCenterBase();
/**
* Load any remaining binary blobs needed
* @returns false if an error occurred, which typically cancels the load.
*/
virtual bool completeLoading(KoStore *store) = 0;
/**
* Save any remaining binary blobs
* @returns false if an error occurred, which typically cancels the save.
*/
virtual bool completeSaving(KoStore *store, KoXmlWriter *manifestWriter, KoShapeSavingContext *context) = 0;
};
#endif