@@ -81,7 +81,7 @@ private:
};
-String ToString(const Transform& transform);
+ROCKETCORE_API String ToString(const Transform& transform);
}
@@ -354,7 +354,7 @@ public:
template<>
class TypeConverter< TransformRef, String >
@@ -32,7 +32,7 @@
namespace Rocket {
namespace Core {
-double Clock::GetElapsedTime()
+ROCKETCORE_API double Clock::GetElapsedTime()
{
SystemInterface* system_interface = GetSystemInterface();
if (system_interface != NULL)
@@ -41,7 +41,7 @@ class Clock
public:
/// Get the elapsed time since application startup
/// @return Seconds elapsed since application startup.
- static double GetElapsedTime();
+ ROCKETCORE_API static double GetElapsedTime();
@@ -72,7 +72,7 @@ const Transforms::Primitive & Transform::GetPrimitive(int i) const noexcept
return primitives[i];
-String ToString(const Transform& transform)
+ROCKETCORE_API String ToString(const Transform& transform)
String result;
auto& primitives = transform.GetPrimitives();