'libs/panners' - Remove the temporary export specifiers that were only used for testing

This commit is contained in:
John Emmas 2013-09-03 15:53:24 +01:00
parent f43dcd2d91
commit 6f1cd7b04a
2 changed files with 4 additions and 4 deletions

View file

@ -105,7 +105,7 @@ Panner1in2out::update ()
desired_right = panR * (scale * panR + 1.0f - scale);
}
ARDOURPANNER_API void
void
Panner1in2out::set_position (double p)
{
if (clamp_position (p)) {
@ -113,7 +113,7 @@ Panner1in2out::set_position (double p)
}
}
ARDOURPANNER_API bool
bool
Panner1in2out::clamp_position (double& p)
{
/* any position between 0.0 and 1.0 is legal */

View file

@ -42,8 +42,8 @@ class Panner1in2out : public Panner
Panner1in2out (boost::shared_ptr<Pannable>);
~Panner1in2out ();
ARDOURPANNER_API void set_position (double);
ARDOURPANNER_API bool clamp_position (double&);
void set_position (double);
bool clamp_position (double&);
std::pair<double, double> position_range () const;
double position() const;