assimp/port/Assimp.NET/Assimp.NET/QuatKey.cpp

41 lines
733 B
C++

#include "QuatKey.h"
namespace AssimpNET
{
QuatKey::QuatKey(void)
{
throw gcnew System::NotImplementedException();
}
QuatKey::QuatKey(double time, const Quaternion^ value)
{
throw gcnew System::NotImplementedException();
}
QuatKey::~QuatKey()
{
throw gcnew System::NotImplementedException();
}
bool QuatKey::operator != (const QuatKey^ o)
{
throw gcnew System::NotImplementedException();
}
bool QuatKey::operator < (const QuatKey^ o)
{
throw gcnew System::NotImplementedException();
}
bool QuatKey::operator == (const QuatKey^ o)
{
throw gcnew System::NotImplementedException();
}
bool QuatKey::operator > (const QuatKey^ o)
{
throw gcnew System::NotImplementedException();
}
}