summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/analyser.h
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
committerDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
commit9c0d7d72d70082a54f823cd44c0ccda5da64bb6f (patch)
tree96ec400b83b8c1c06852b1936f684b5fbcd47a79 /libs/ardour/ardour/analyser.h
parent2f3f697bb8e185eb43c2c50b4eefc2bcb937f269 (diff)
remove empty sigc++2 directory
git-svn-id: svn://localhost/ardour2/branches/3.0@3432 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/analyser.h')
-rw-r--r--libs/ardour/ardour/analyser.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/libs/ardour/ardour/analyser.h b/libs/ardour/ardour/analyser.h
deleted file mode 100644
index 8771cab6b0..0000000000
--- a/libs/ardour/ardour/analyser.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef __ardour_analyser_h__
-#define __ardour_analyser_h__
-
-#include <glibmm/thread.h>
-#include <boost/shared_ptr.hpp>
-
-namespace ARDOUR {
-
-class AudioFileSource;
-class Source;
-class TransientDetector;
-
-class Analyser {
-
- public:
- Analyser();
- ~Analyser ();
-
- static void init ();
- static void queue_source_for_analysis (boost::shared_ptr<Source>, bool force);
- static void work ();
-
- private:
- static Analyser* the_analyser;
- static Glib::StaticMutex analysis_queue_lock;
- static Glib::Cond* SourcesToAnalyse;
- static std::list<boost::weak_ptr<Source> > analysis_queue;
-
- static void analyse_audio_file_source (boost::shared_ptr<AudioFileSource>);
-};
-
-
-}
-
-#endif /* __ardour_analyser_h__ */