mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-15 17:14:39 +00:00
61 lines
3.4 KiB
C++
61 lines
3.4 KiB
C++
/****************************************************************************
|
|
* 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<RenderPluginInterface> begin() {return ConstPluginIterator<RenderPluginInterface>(pm->renderPlugins, pm->renderPlugins.begin(), b);}
|
|
ConstPluginIterator<RenderPluginInterface> end() {return ConstPluginIterator<RenderPluginInterface>(pm->renderPlugins, pm->renderPlugins.end(), b);}
|
|
//std::vector<RenderPluginInterface*>::const_iterator begin() {return pm->renderPlugins.begin();}
|
|
//std::vector<RenderPluginInterface*>::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<EditPluginInterfaceFactory> begin() {return ConstPluginIterator<EditPluginInterfaceFactory>(pm->editPlugins, pm->editPlugins.begin(), b);}
|
|
ConstPluginIterator<EditPluginInterfaceFactory> end() {return ConstPluginIterator<EditPluginInterfaceFactory>(pm->editPlugins, pm->editPlugins.end(), b);}
|
|
//std::vector<EditPluginInterfaceFactory*>::const_iterator begin() {return pm->editPlugins.begin();}
|
|
//std::vector<EditPluginInterfaceFactory*>::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
|