Files
assimp/port/Assimp.NET/Assimp.NET/Logger.cpp
rave3d bbf5a32e6c adding native pointer to manganed classes
implementing c'tors and d'tors for managend classes (execept logging system)
rename some files

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@481 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-09-24 14:44:21 +00:00

63 lines
1.0 KiB
C++

#include "mLogger.h"
namespace AssimpNET
{
Logger::Logger(void)
{
throw gcnew System::NotImplementedException();
}
Logger::Logger(LogSeverity severity)
{
throw gcnew System::NotImplementedException();
}
Logger::Logger(Assimp::Logger* native)
{
this->p_native = native;
}
Logger::~Logger(void)
{
if(this->p_native)
delete this->p_native;
}
void Logger::debug (const String^ message)
{
throw gcnew System::NotImplementedException();
}
void Logger::error(const String^ message)
{
throw gcnew System::NotImplementedException();
}
LogSeverity Logger::getLogSeverity()
{
throw gcnew System::NotImplementedException();
}
void Logger::info(const String^ message)
{
throw gcnew System::NotImplementedException();
}
void Logger::setLogSverity(LogSeverity log_severity)
{
throw gcnew System::NotImplementedException();
}
void Logger::warn(const String^ message)
{
throw gcnew System::NotImplementedException();
}
Assimp::Logger* Logger::getNative()
{
return this->p_native;
}
}//namespace