mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-14 08:34:37 +00:00
65 lines
2.9 KiB
C++
65 lines
2.9 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_EDIT_PLUGIN_CONTAINER_H
|
|
#define MESHLAB_EDIT_PLUGIN_CONTAINER_H
|
|
|
|
#include "../interfaces/edit_plugin.h"
|
|
#include "generic_container_iterator.h"
|
|
|
|
/**
|
|
* @brief The EditPluginContainer class allows to organize
|
|
* all the edit plugins contained in the PluginManager.
|
|
*
|
|
* Note: plugins are not owned by this container, but by the PluginManager,
|
|
* since each plugin can inherit from more than one PluginInterface.
|
|
*/
|
|
class EditPluginContainer
|
|
{
|
|
public:
|
|
class EditPluginFactoryRangeIterator;
|
|
EditPluginContainer();
|
|
|
|
void clear();
|
|
void pushEditPlugin(EditPluginFactory* iEditFactory);
|
|
void eraseEditPlugin(EditPluginFactory* iEditFactory);
|
|
|
|
EditPluginFactoryRangeIterator editPluginIterator(bool iterateAlsoDisabledPlugins = false) const;
|
|
private:
|
|
std::vector<EditPluginFactory*> editPlugins;
|
|
};
|
|
|
|
class EditPluginContainer::EditPluginFactoryRangeIterator
|
|
{
|
|
friend class EditPluginContainer;
|
|
public:
|
|
ConstPluginIterator<EditPluginFactory> begin();
|
|
ConstPluginIterator<EditPluginFactory> end();
|
|
private:
|
|
EditPluginFactoryRangeIterator(const EditPluginContainer* pm, bool iterateAlsoDisabledPlugins = false);
|
|
const EditPluginContainer* pm;
|
|
bool b;
|
|
};
|
|
|
|
#endif // MESHLAB_EDIT_PLUGIN_CONTAINER_H
|