X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Fardour%2Fnamed_selection.h;h=f03db205749699d6c5a442db70f804f1d77f4e7a;hb=cc7d4db5fe9132c38b919ab073b91d442abad9b6;hp=39ab524d4f7e20174653b9545b2936512da2753d;hpb=4b95621853072c44b1df698df8a96d7d9167319f;p=ardour.git diff --git a/libs/ardour/ardour/named_selection.h b/libs/ardour/ardour/named_selection.h index 39ab524d4f..f03db20574 100644 --- a/libs/ardour/ardour/named_selection.h +++ b/libs/ardour/ardour/named_selection.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2003 Paul Davis + 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 @@ -24,29 +24,30 @@ #include #include -#include +#include "pbd/stateful.h" class XMLNode; namespace ARDOUR { + class Session; class Playlist; struct NamedSelection : public PBD::Stateful { - NamedSelection (std::string, std::list >&); - NamedSelection (Session&, const XMLNode&); - virtual ~NamedSelection (); + NamedSelection (std::string, std::list >&); + NamedSelection (Session&, const XMLNode&); + virtual ~NamedSelection (); - std::string name; - std::list > playlists; + std::string name; + std::list > playlists; - XMLNode& get_state (void); + XMLNode& get_state (void); - int set_state (const XMLNode&); + int set_state (const XMLNode&, int version); - static sigc::signal NamedSelectionCreated; + static PBD::Signal1 NamedSelectionCreated; }; }/* namespace ARDOUR */