/**************************************************************************** * MeshLab o o * * A versatile mesh processing toolbox o o * * _ O _ * * Copyright(C) 2005-2008 \/)\/ * * 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 __RMEFFECT_H__ #define __RMEFFECT_H__ #include #include #include "RmPass.h" class RmEffect { public: RmEffect(QString _name) : name(_name) {} int size() { return passlist.size(); } RmPass& at(int idx) { return passlist[idx]; } RmPass& operator[](int idx) { return passlist[idx]; } QList& getPassList() { return passlist; } void addPass(RmPass pass) { passlist.append(pass); } QString& getName() { return name; } void sortPasses() { qSort(passlist.begin(), passlist.end()); } private: QString name; QList passlist; }; #endif /* __RMEFFECT_H__ */