From c846bd5224d3ad863dc1d84a712bcabeb247a918 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Fri, 25 Nov 2005 00:10:08 +0000 Subject: [PATCH] added Q_DECLARE_INTERFACE for MeshColorizeInterface --- src/meshlab/interfaces.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/meshlab/interfaces.h b/src/meshlab/interfaces.h index 32eaf8c19..ab29ff9f7 100644 --- a/src/meshlab/interfaces.h +++ b/src/meshlab/interfaces.h @@ -23,6 +23,9 @@ /**************************************************************************** History $Log$ +Revision 1.8 2005/11/25 00:10:08 glvertex +added Q_DECLARE_INTERFACE for MeshColorizeInterface + Revision 1.7 2005/11/24 10:54:37 cignoni Yet another test to compile under linux: added a const before QString in applyfilter... @@ -109,6 +112,7 @@ public: class MeshColorizeInterface { +public: virtual void Compute( QString &mode, MeshModel &m, QWidget *parent){}; virtual void Show(QString &mode, bool show, MeshModel &m, QWidget *parent) {}; virtual void Finalize(QString &mode, MeshModel &m, QWidget *parent){}; @@ -121,5 +125,7 @@ Q_DECLARE_INTERFACE(MeshFilterInterface, "vcg.meshlab.MeshFilterInterface/1.0") Q_DECLARE_INTERFACE(MeshRenderInterface, "vcg.meshlab.MeshRenderInterface/1.0") +Q_DECLARE_INTERFACE(MeshColorizeInterface, + "vcg.meshlab.MeshColorizeInterface/1.0") #endif