Skip to content
Snippets Groups Projects
Commit ae9b6493 authored by Jan Möbius's avatar Jan Möbius
Browse files

Added missing DLLEXPORT for types.hh functions

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@3992 383ad7c9-94d9-4d36-a494-682f7c89f535
parent 1fbd8bd8
No related branches found
No related tags found
No related merge requests found
...@@ -138,12 +138,15 @@ typedef MeshObject< PolyMesh , DATA_POLY_MESH > PolyMeshObject; ...@@ -138,12 +138,15 @@ typedef MeshObject< PolyMesh , DATA_POLY_MESH > PolyMeshObject;
//== Functions for adding dataTypes ========================================================= //== Functions for adding dataTypes =========================================================
/// Adds a datatype and returns the id for the new type /// Adds a datatype and returns the id for the new type
DLLEXPORT
DataType addDataType(QString _name); DataType addDataType(QString _name);
/// Given a dataType Identifier string this function will return the id of the datatype /// Given a dataType Identifier string this function will return the id of the datatype
DLLEXPORT
DataType typeId(QString _name); DataType typeId(QString _name);
/// Get the name of a type with given id /// Get the name of a type with given id
DLLEXPORT
QString typeName(DataType _id); QString typeName(DataType _id);
//================================================================================================ //================================================================================================
...@@ -152,13 +155,19 @@ QString typeName(DataType _id); ...@@ -152,13 +155,19 @@ QString typeName(DataType _id);
//================================================================================================ //================================================================================================
/// Get an icon for a given DataType /// Get an icon for a given DataType
DLLEXPORT
QString typeIcon(QString _name); QString typeIcon(QString _name);
/// Get an icon for a given DataType /// Get an icon for a given DataType
DLLEXPORT
QString typeIcon(DataType _id); QString typeIcon(DataType _id);
/// Set an Icon for a given DataType /// Set an Icon for a given DataType
DLLEXPORT
void setTypeIcon( DataType _id , QString _icon); void setTypeIcon( DataType _id , QString _icon);
/// Set an Icon for a given DataType /// Set an Icon for a given DataType
DLLEXPORT
void setTypeIcon( QString _name , QString _icon ); void setTypeIcon( QString _name , QString _icon );
/** @} */ /** @} */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment