/**************************************************************************** * MeshLab o o * * A versatile mesh processing toolbox o o * * _ O _ * * Copyright(C) 2005-2021 \/)\/ * * Visual Computing Lab /\/| * * ISTI - Italian National Research Council | * * \ * * All rights reserved. * * * * 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. * * * * This program 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 General Public License (http://www.gnu.org/licenses/gpl.txt) * * for more details. * * * ****************************************************************************/ #ifndef MESHLAB_PLUGIN_MANAGER_ITERATORS_H #define MESHLAB_PLUGIN_MANAGER_ITERATORS_H #include "plugin_manager.h" #include "containers/generic_container_iterator.h" /** Range iterators **/ class PluginManager::RenderPluginRangeIterator { friend class PluginManager; public: ConstPluginIterator begin() {return ConstPluginIterator(pm->renderPlugins, pm->renderPlugins.begin(), b);} ConstPluginIterator end() {return ConstPluginIterator(pm->renderPlugins, pm->renderPlugins.end(), b);} //std::vector::const_iterator begin() {return pm->renderPlugins.begin();} //std::vector::const_iterator end() {return pm->renderPlugins.end();} private: RenderPluginRangeIterator(const PluginManager* pm, bool iterateAlsoDisabledPlugins = false) : pm(pm), b(iterateAlsoDisabledPlugins) {} const PluginManager* pm; bool b; }; class PluginManager::EditPluginFactoryRangeIterator { friend class PluginManager; public: ConstPluginIterator begin() {return ConstPluginIterator(pm->editPlugins, pm->editPlugins.begin(), b);} ConstPluginIterator end() {return ConstPluginIterator(pm->editPlugins, pm->editPlugins.end(), b);} //std::vector::const_iterator begin() {return pm->editPlugins.begin();} //std::vector::const_iterator end() {return pm->editPlugins.end();} private: EditPluginFactoryRangeIterator(const PluginManager* pm, bool iterateAlsoDisabledPlugins = false) : pm(pm), b(iterateAlsoDisabledPlugins) {} const PluginManager* pm; bool b; }; #endif // MESHLAB_PLUGIN_MANAGER_ITERATORS_H