|
@@ -9,11 +9,121 @@ Importer::Importer(void)
|
|
|
throw gcnew System::NotImplementedException();
|
|
|
}
|
|
|
|
|
|
+Importer::Importer(const Importer^ other)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
Importer::~Importer(void)
|
|
|
{
|
|
|
throw gcnew System::NotImplementedException();
|
|
|
}
|
|
|
|
|
|
+void Importer::FreeScene()
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+array<char>^ Importer::GetErrorString()
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::GetExtensionsList(String^ extensions)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+IOSystem^ Importer::GetIOHandler()
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::GetMemoryRequrements(aiMemoryInfo^ in)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+Scene^ Importer::getOrphanedScene( )
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+float Importer::GetPropertyFloat(array<char>^ propName)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+int Importer::GetPropertyInt(array<char>^ propName)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+String^ Importer::GetPrpertyString(array<char>^ propName)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+Scene^ Importer::getScene()
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+bool Importer::IsDefaultIOHandler()
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+bool Importer::IsExtensionSupported(array<char>^ extension)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+bool Importer::IsExtensionSupported(String^ extension)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+Scene^ Importer::ReadFile(array<char>^ fileName, unsigned int flags)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+Scene^ Importer::ReadFile(String^ fileName, unsigned int flags)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::SetExtraVerbose(bool verbose)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::SetIOHanlder(IOSystem^ ioHandler)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::SetPropertyFloat(array<char>^ propName, float value)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::SetPropertyInt(array<char>^ propName, int value)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+void Importer::SetPrpertyString(array<char>^ propName, String^ value)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
+bool Importer::ValidateFlags(unsigned int flags)
|
|
|
+{
|
|
|
+ throw gcnew System::NotImplementedException();
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
}//namespace
|