importexport/impexpmenu/orimpexpmenu.cxx
#include "orimpexpmenu.h"
#ifdef KARCH_ENV_WIN
#include <windows.h>
#endif
{
}
bool FBLibrary::LibInit() { return true; }
bool FBLibrary::LibOpen() { return true; }
bool FBLibrary::LibReady()
{
return true;
}
bool FBLibrary::LibClose() { return true; }
bool FBLibrary::LibRelease()
{
ORMenuItemCustomImport* lMenu =
NULL;
lMenu->FBDelete();
return true;
}
bool ORMenuItemCustomImport::FBCreate()
{
Extension = "*.custom";
Label = "OR - Custom Motion File";
Description = "OR - Custom Motion File Description";
return true;
}
bool ORMenuItemCustomImport::Execute(const char *pFilename)
{
FBModelMarker* lMarker = new FBModelMarker("ImportedMarker");
lMarker->Show = true;
return true;
}