Add missing EXPCL_PANDAPHYSICS

This commit is contained in:
rdb 2014-02-20 23:10:59 +00:00
parent 607bdac3dc
commit a58ddb3cfa
2 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,7 @@
// function. // function.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationFunction : public TypedReferenceCount { class EXPCL_PANDAPHYSICS ColorInterpolationFunction : public TypedReferenceCount {
PUBLISHED: PUBLISHED:
// virtual string get_type(); // virtual string get_type();
@ -62,7 +62,7 @@ private:
// the segment. // the segment.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationFunctionConstant : public ColorInterpolationFunction { class EXPCL_PANDAPHYSICS ColorInterpolationFunctionConstant : public ColorInterpolationFunction {
PUBLISHED: PUBLISHED:
INLINE LColor get_color_a() const; INLINE LColor get_color_a() const;
@ -103,7 +103,7 @@ private:
// the segment. // the segment.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationFunctionLinear : public ColorInterpolationFunctionConstant { class EXPCL_PANDAPHYSICS ColorInterpolationFunctionLinear : public ColorInterpolationFunctionConstant {
PUBLISHED: PUBLISHED:
INLINE LColor get_color_b() const; INLINE LColor get_color_b() const;
@ -147,7 +147,7 @@ private:
// the end of the segment. // the end of the segment.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationFunctionStepwave : public ColorInterpolationFunctionLinear { class EXPCL_PANDAPHYSICS ColorInterpolationFunctionStepwave : public ColorInterpolationFunctionLinear {
PUBLISHED: PUBLISHED:
INLINE PN_stdfloat get_width_a() const; INLINE PN_stdfloat get_width_a() const;
INLINE PN_stdfloat get_width_b() const; INLINE PN_stdfloat get_width_b() const;
@ -195,7 +195,7 @@ private:
// cycle. // cycle.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationFunctionSinusoid : public ColorInterpolationFunctionLinear { class EXPCL_PANDAPHYSICS ColorInterpolationFunctionSinusoid : public ColorInterpolationFunctionLinear {
PUBLISHED: PUBLISHED:
INLINE PN_stdfloat get_period() const; INLINE PN_stdfloat get_period() const;
@ -238,7 +238,7 @@ private:
// also has a function associated with it. // also has a function associated with it.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationSegment : public ReferenceCount { class EXPCL_PANDAPHYSICS ColorInterpolationSegment : public ReferenceCount {
PUBLISHED: PUBLISHED:
ColorInterpolationSegment(ColorInterpolationFunction* function, const PN_stdfloat &time_begin, const PN_stdfloat &time_end, const bool is_modulated, const int id); ColorInterpolationSegment(ColorInterpolationFunction* function, const PN_stdfloat &time_begin, const PN_stdfloat &time_end, const bool is_modulated, const int id);
ColorInterpolationSegment(const ColorInterpolationSegment &s); ColorInterpolationSegment(const ColorInterpolationSegment &s);
@ -280,7 +280,7 @@ protected:
// general use. // general use.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class ColorInterpolationManager : public ReferenceCount { class EXPCL_PANDAPHYSICS ColorInterpolationManager : public ReferenceCount {
PUBLISHED: PUBLISHED:
ColorInterpolationManager(); ColorInterpolationManager();
ColorInterpolationManager(const LColor &c); ColorInterpolationManager(const LColor &c);

View File

@ -27,7 +27,7 @@
// in the makefile when the time is right or this class // in the makefile when the time is right or this class
// becomes needed... // becomes needed...
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class LinearUserDefinedForce : public LinearForce { class EXPCL_PANDAPHYSICS LinearUserDefinedForce : public LinearForce {
PUBLISHED: PUBLISHED:
LinearUserDefinedForce(LVector3 (*proc)(const PhysicsObject *) = NULL, LinearUserDefinedForce(LVector3 (*proc)(const PhysicsObject *) = NULL,
PN_stdfloat a = 1.0f, PN_stdfloat a = 1.0f,