Upgraded to latest COLLADA-DOM 1.2.0, see http://sourceforge.net/project/showfiles.php?group_id=157838
November 13, 2006 Re-applied the 'INF' fix for constraint limits.
This commit is contained in:
@@ -28,11 +28,11 @@ public:
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
daeIntegrationObject() { _element = NULL; _object = NULL; _from_state = int_uninitialized; _to_state = int_uninitialized; }
|
||||
DLLSPEC daeIntegrationObject() { _element = NULL; _object = NULL; _from_state = int_uninitialized; _to_state = int_uninitialized; }
|
||||
/**
|
||||
* Destructor.
|
||||
*/
|
||||
virtual ~daeIntegrationObject() {}
|
||||
virtual DLLSPEC ~daeIntegrationObject() {}
|
||||
|
||||
public:
|
||||
/** A pointer to the element associated with this integration object. */
|
||||
@@ -74,31 +74,31 @@ protected:
|
||||
* for this integration template. This method sets up the integration object for the DOM class.
|
||||
* @param element A daeSmartRef to the element to convert into the user's structure.
|
||||
*/
|
||||
virtual void createFrom(daeElementRef element) = 0;
|
||||
virtual DLLSPEC void createFrom(daeElementRef element) = 0;
|
||||
/**
|
||||
* Defines the code to convert the COLLADA Object Model data structure into your application-specific
|
||||
* data structure.
|
||||
*/
|
||||
virtual void fromCOLLADA() = 0;
|
||||
virtual DLLSPEC void fromCOLLADA() = 0;
|
||||
/**
|
||||
* Defines any postprocessing code that must execute after the basic conversion.
|
||||
*/
|
||||
virtual void fromCOLLADAPostProcess() = 0;
|
||||
virtual DLLSPEC void fromCOLLADAPostProcess() = 0;
|
||||
/**
|
||||
* Defines code to create the COLLADA Object Model data structure associated with the DOM class for
|
||||
* this template.
|
||||
* @param userData A pointer to the application-specific data structure to convert to the DOM structure.
|
||||
*/
|
||||
virtual void createTo(void *userData) = 0;
|
||||
virtual DLLSPEC void createTo(void *userData) = 0;
|
||||
/**
|
||||
* Defines the code to convert your application's data structures back into COLLADA Object Model data
|
||||
* structures.
|
||||
*/
|
||||
virtual void toCOLLADA() = 0;
|
||||
virtual DLLSPEC void toCOLLADA() = 0;
|
||||
/**
|
||||
* Defines any postprocessing code that must execute after the basic conversion.
|
||||
*/
|
||||
virtual void toCOLLADAPostProcess() = 0;
|
||||
virtual DLLSPEC void toCOLLADAPostProcess() = 0;
|
||||
|
||||
public:
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user