/* * Copyright 2006, Haiku. All rights reserved. * Distributed under the terms of the MIT License. * * Authors: * Stephan Aßmus */ #ifndef DOCUMENT_SAVER_H #define DOCUMENT_SAVER_H #include class Document; /*! Interface for all the other savers to implement */ class DocumentSaver { public: DocumentSaver(); virtual ~DocumentSaver(); virtual status_t Save(Document* document) = 0; }; #endif // DOCUMENT_SAVER_H