00001 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 00002 /* libe-book 00003 * Version: MPL 2.0 / LGPLv2.1+ 00004 * 00005 * This Source Code Form is subject to the terms of the Mozilla Public 00006 * License, v. 2.0. If a copy of the MPL was not distributed with this 00007 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 00008 * 00009 * Alternatively, the contents of this file may be used under the terms 00010 * of the GNU Lesser General Public License Version 2.1 or later 00011 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are 00012 * applicable instead of those above. 00013 * 00014 * For further information visit http://libebook.sourceforge.net 00015 */ 00016 00017 #ifndef FB2CONTENT_H_INCLUDED 00018 #define FB2CONTENT_H_INCLUDED 00019 00020 namespace libebook 00021 { 00022 00023 class FB2Collector; 00024 struct FB2BlockFormat; 00025 class FB2Style; 00026 00034 class FB2Content 00035 { 00036 public: 00037 virtual ~FB2Content() = 0; 00038 00041 virtual void unfold(FB2Collector &collector) const = 0; 00042 }; 00043 00044 } 00045 00046 #endif // FB2CONTENT_H_INCLUDED 00047 00048 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */