⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rs_filterinterface.h

📁 qcad2.05可用于windows和linux的源码
💻 H
字号:
/****************************************************************************** $Id: rs_filterinterface.h 1822 2004-02-29 00:29:32Z andrew $**** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.**** This file is part of the qcadlib Library project.**** This file may be distributed and/or modified under the terms of the** GNU General Public License version 2 as published by the Free Software** Foundation and appearing in the file LICENSE.GPL included in the** packaging of this file.**** Licensees holding valid qcadlib Professional Edition licenses may use ** this file in accordance with the qcadlib Commercial License** Agreement provided with the Software.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.**** See http://www.ribbonsoft.com for further details.**** Contact info@ribbonsoft.com if any conditions of this licensing are** not clear to you.************************************************************************/#ifndef RS_FILTERINTERFACE_H#define RS_FILTERINTERFACE_H#include "rs_graphic.h"#include "rs_string.h"#include "rs_valuelist.h"#include "rs_debug.h"/** * This is the interface that must be implemented for all  * format filter classes. The RS_FileIO class  * uses the methods defined in here to interact with the format * filter classes. * * @author Andrew Mustun */class RS_FilterInterface {public:    /**     * Constructor.     */    RS_FilterInterface() {		//std::cout << "RS_FilterInterface\n";        //graphic = NULL;    }    /**     * Destructor.     */    virtual ~RS_FilterInterface() {}    /**     * Checks if this filter can import the given file type.     *     * @retval true if the filter can import the file type      * @retval false otherwise.     */    virtual bool canImport(RS2::FormatType t) {        return !(importFormats.find(t)==importFormats.end());    }    /**     * Checks if this filter can export the given file type.     *     * @return true if the filter can export the file type,      *         false otherwise.     */    virtual bool canExport(RS2::FormatType t) {        return !(exportFormats.find(t)==exportFormats.end());    }    /**     * The implementation of this method in a inherited format     * class should read a file from disk and put the entities     * into the current entity container.     */    virtual bool fileImport(RS_Graphic& g, const RS_String& file, RS2::FormatType type) = 0;    /**     * The implementation of this method in a inherited format     * class should write the entities in the current entity container     * to a file on the disk.     */    virtual bool fileExport(RS_Graphic& g, const RS_String& file, RS2::FormatType type) = 0;protected:    /**     * Adds a file extension which can be imported by this filter.     */    void addImportFormat(RS2::FormatType type) {        RS_DEBUG->print("Filter can import %d", (int)type);        importFormats += type;    }    /**     * Adds a file extension which can be exported by this filter.     */    void addExportFormat(RS2::FormatType type) {        RS_DEBUG->print("Filter can export %d", (int)type);        exportFormats += type;    }protected:    //! Pointer to the graphic we currently operate on.    //RS_Graphic* graphic;    //! Vector of file extensions this filter can import.    RS_ValueList<RS2::FormatType> importFormats;    //! Vector of file extensions this filter can export.    RS_ValueList<RS2::FormatType> exportFormats;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -