aboutsummaryrefslogtreecommitdiff
path: root/tools/common/IMeshFileReader.h
diff options
context:
space:
mode:
authorAnton Novoselov <[email protected]>2017-08-01 12:53:38 +0300
committerAnton Novoselov <[email protected]>2017-08-01 12:53:38 +0300
commit236f03c0b9a4982328ed1201978f7f69d192d9b2 (patch)
treee486f2fa39dba203563895541e92c60ed3e25759 /tools/common/IMeshFileReader.h
parentAdded screens to welcome page (diff)
downloadblast-236f03c0b9a4982328ed1201978f7f69d192d9b2.tar.xz
blast-236f03c0b9a4982328ed1201978f7f69d192d9b2.zip
Blast 1.1 release (windows / linux)
see docs/release_notes.txt for details
Diffstat (limited to 'tools/common/IMeshFileReader.h')
-rw-r--r--tools/common/IMeshFileReader.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/common/IMeshFileReader.h b/tools/common/IMeshFileReader.h
deleted file mode 100644
index d632a2f..0000000
--- a/tools/common/IMeshFileReader.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-#include <memory>
-#include <string>
-#include "NvBlastExtAuthoringMesh.h"
-
-
-class IMeshFileReader
-{
-public:
-
- /*
- Load from the specified file path, returning a mesh or nullptr if failed
- */
- virtual std::shared_ptr<Nv::Blast::Mesh> loadFromFile(std::string filename) = 0;
-
- virtual bool getConvertToUE4() { return bConvertToUE4; }
- virtual void setConvertToUE4(bool bConvert) { bConvertToUE4 = bConvert; }
-
-private:
- bool bConvertToUE4;
-}; \ No newline at end of file