aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Visual/projectm/qprojectm.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-02-28 20:16:19 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-02-28 20:16:19 +0000
commit4df23e9b87f7124b59778aa02ab776e842989e0e (patch)
tree843f342dd0d203d0f3ac2a59ab26e1894ea8144d /src/plugins/Visual/projectm/qprojectm.h
parent73dc5b282e3fdd858910fb87de689237a58ea6a6 (diff)
downloadqmmp-4df23e9b87f7124b59778aa02ab776e842989e0e.tar.gz
qmmp-4df23e9b87f7124b59778aa02ab776e842989e0e.tar.bz2
qmmp-4df23e9b87f7124b59778aa02ab776e842989e0e.zip
enapled projectM plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@812 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Visual/projectm/qprojectm.h')
-rw-r--r--src/plugins/Visual/projectm/qprojectm.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/plugins/Visual/projectm/qprojectm.h b/src/plugins/Visual/projectm/qprojectm.h
deleted file mode 100644
index b96280fd2..000000000
--- a/src/plugins/Visual/projectm/qprojectm.h
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// C++ Interface: qprojectm
-//
-// Description:
-//
-//
-// Author: Carmelo Piccione <carmelo.piccione@gmail.com>, (C) 2008
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
-
-#ifndef QPROJECTM_HPP
-#define QPROJECTM_HPP
-#include <libprojectM/projectM.hpp>
-#include <QObject>
-
-class QProjectM : public QObject, public projectM
-{
-
- Q_OBJECT
-
-public:
- QProjectM(const std::string & config_file) : projectM(config_file, projectM::FLAG_DISABLE_PLAYLIST_LOAD) {}
-
- void presetSwitchedEvent(bool hardCut, unsigned int index) const
- {
- presetSwitchedSignal(hardCut, index);
- }
-
-signals:
- void presetSwitchedSignal(bool hardCut, unsigned int index) const;
-
-};
-#endif