Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-08-04 15:42:38 +0400
committerThomas Dinges <blender@dingto.org>2012-08-04 15:42:38 +0400
commit2390c95cf1435c19adcb22263b27750ea3ca81e7 (patch)
tree1c00b20687518aa3c77a519b9b7c43bdd6572f13 /intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h
parentf50bae32593c135a82277d5f4b4f72eb83a27576 (diff)
Code cleanup:
* Remove BSP_GhostTest, not used and working for ages, approved by Sergey.
Diffstat (limited to 'intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h')
-rw-r--r--intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h b/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h
deleted file mode 100644
index 8fcac29253b..00000000000
--- a/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/**
- * ***** BEGIN GPL LICENSE BLOCK *****
- *
- * 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 for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
- * All rights reserved.
- *
- * The Original Code is: all of this file.
- *
- * Contributor(s): none yet.
- *
- * ***** END GPL LICENSE BLOCK *****
- */
-
-#ifndef __BSP_PLYLOADER_H__
-#define __BSP_PLYLOADER_H__
-
-#include "MEM_SmartPtr.h"
-#include "BSP_TMesh.h"
-
-class BSP_PlyLoader {
-public :
-
- static
- MEM_SmartPtr<BSP_TMesh>
- NewMeshFromFile(
- char * file_name,
- MT_Vector3 &min,
- MT_Vector3 &max
- );
-
-
-private :
-
- // unimplemented - not for instantiation.
-
- BSP_PlyLoader(
- );
-
- ~BSP_PlyLoader(
- );
-};
-
-
-
-#endif
-