summaryrefslogtreecommitdiffhomepage
path: root/Magic2/ModelFileMAG.h
diff options
context:
space:
mode:
Diffstat (limited to 'Magic2/ModelFileMAG.h')
-rw-r--r--Magic2/ModelFileMAG.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/Magic2/ModelFileMAG.h b/Magic2/ModelFileMAG.h
deleted file mode 100644
index a005691..0000000
--- a/Magic2/ModelFileMAG.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
- Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
- Copyright (c) 1997-2006, Destroyer Studios LLC.
-
- AUTHOR: John DiCamillo
-
-
- OVERVIEW
- ========
- File loader for MAG format models
-*/
-
-#ifndef ModelFileMAG_h
-#define ModelFileMAG_h
-
-#include "Solid.h"
-
-// +--------------------------------------------------------------------+
-
-class ModelFileMAG : public ModelFile
-{
-public:
- ModelFileMAG(const char* fname);
- virtual ~ModelFileMAG();
-
- virtual bool Load(Model* m, double scale=1.0);
- virtual bool Save(Model* m);
-
-protected:
- virtual bool LoadMag5(FILE* fp, Model* m, double scale);
- virtual bool LoadMag6(FILE* fp, Model* m, double scale);
-};
-
-// +--------------------------------------------------------------------+
-
-#endif ModelFileMAG_h
-