summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/named_selection.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-06-26 02:11:06 +0000
committerCarl Hetherington <carl@carlh.net>2012-06-26 02:11:06 +0000
commitc52bdcf69d049a4afa107e6247321afb93c65e1b (patch)
treee61c757b4682052613b151929ae022067458e603 /libs/ardour/ardour/named_selection.h
parenta054a74dd29197679eb6f67e6fcaa54df7d70810 (diff)
Remove unused named selection / chunk code.
git-svn-id: svn://localhost/ardour2/branches/3.0@12939 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/named_selection.h')
-rw-r--r--libs/ardour/ardour/named_selection.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/libs/ardour/ardour/named_selection.h b/libs/ardour/ardour/named_selection.h
deleted file mode 100644
index c120848328..0000000000
--- a/libs/ardour/ardour/named_selection.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- Copyright (C) 2003 Paul Davis
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-#ifndef __ardour_named_selection_h__
-#define __ardour_named_selection_h__
-
-#include <string>
-#include <list>
-#include <boost/shared_ptr.hpp>
-
-#include "pbd/stateful.h"
-
-class XMLNode;
-
-namespace ARDOUR
-{
-
-class Session;
-class Playlist;
-
-class NamedSelection : public PBD::Stateful
-{
-public:
- NamedSelection (std::string, std::list<boost::shared_ptr<Playlist> >&);
- NamedSelection (Session&, const XMLNode&);
- virtual ~NamedSelection ();
-
- std::string name;
- std::list<boost::shared_ptr<Playlist> > playlists;
-
- XMLNode& get_state (void);
-
- int set_state (const XMLNode&, int version);
-
- static PBD::Signal1<void,NamedSelection*> NamedSelectionCreated;
-};
-
-}/* namespace ARDOUR */
-
-#endif /* __ardour_named_selection_h__ */
-