Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
CAMP
campvis-public
Commits
d8161329
Commit
d8161329
authored
Jun 13, 2014
by
Jakob Weiss
Browse files
fixed missing export statement for PositionData and TransformData
parent
5457d9a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
core/datastructures/positiondata.h
View file @
d8161329
...
...
@@ -34,7 +34,7 @@ namespace campvis {
/**
* Data Container to store a position and (optional) rotation as quaternion
*/
class
PositionData
:
public
AbstractData
{
class
CAMPVIS_CORE_API
PositionData
:
public
AbstractData
{
public:
/**
* Constructor, Creates a new light source.
...
...
@@ -46,7 +46,7 @@ namespace campvis {
/**
* Virtual destructor
*/
virtual
~
PositionData
();
;
virtual
~
PositionData
();
/// \see AbstractData::clone()
virtual
PositionData
*
clone
()
const
;;
...
...
core/datastructures/transformdata.h
View file @
d8161329
...
...
@@ -34,7 +34,7 @@ namespace campvis {
/**
* Data Container class for transforms. Stores a \a tgt::mat4 object.
*/
class
TransformData
:
public
AbstractData
{
class
CAMPVIS_CORE_API
TransformData
:
public
AbstractData
{
public:
/**
* Constructor, Creates a new light source.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment