From 93a2d2d7092021dfd48400cc9558f33d7c78ed14 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Tue, 22 Nov 2005 16:16:35 +0000 Subject: [PATCH] Added preprocessor intructions to prevent multiple inclusion --- src/meshlab/meshmodel.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/meshlab/meshmodel.h b/src/meshlab/meshmodel.h index 3ad650d75..b73ecc96f 100644 --- a/src/meshlab/meshmodel.h +++ b/src/meshlab/meshmodel.h @@ -23,6 +23,9 @@ /**************************************************************************** History $Log$ +Revision 1.7 2005/11/22 16:16:35 glvertex +Added preprocessor intructions to prevent multiple inclusion + Revision 1.6 2005/11/21 22:06:47 cignoni Reinserted optional normals (now working) @@ -30,6 +33,9 @@ Revision 1.5 2005/11/21 12:09:33 cignoni Added copyright info ****************************************************************************/ +#ifndef MESHMODEL_H +#define MESHMODEL_H + #include #include @@ -79,4 +85,6 @@ public: MeshModel() {glw.m=&cm;} bool Open(const char* filename); bool Render(GLW::DrawMode dm, GLW::ColorMode cm); -}; \ No newline at end of file +}; + +#endif \ No newline at end of file