mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-22 05:07:07 +01:00
'libs/panners' - Remove the temporary export specifiers that were only used for testing
This commit is contained in:
parent
f43dcd2d91
commit
6f1cd7b04a
2 changed files with 4 additions and 4 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue