used shared_ptr<Source>, somewhat successfully
[ardour.git] / libs / ardour / ardour / source.h
1 /*
2     Copyright (C) 2000 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __ardour_source_h__
22 #define __ardour_source_h__
23
24 #include <string>
25
26 #include <sigc++/signal.h>
27 #include <boost/enable_shared_from_this.hpp>
28
29 #include <pbd/statefuldestructible.h> 
30
31 #include <ardour/ardour.h>
32
33 namespace ARDOUR {
34
35 class Source : public PBD::StatefulDestructible, public sigc::trackable, public boost::enable_shared_from_this<Source>
36 {
37   public:
38         Source (std::string name);
39         Source (const XMLNode&);
40         virtual ~Source ();
41
42         std::string name() const { return _name; }
43         int set_name (std::string str, bool destructive);
44
45         const PBD::ID&  id() const   { return _id; }
46
47         time_t timestamp() const { return _timestamp; }
48         void stamp (time_t when) { _timestamp = when; }
49
50         XMLNode& get_state ();
51         int set_state (const XMLNode&);
52
53
54   protected:
55         string            _name;
56         time_t            _timestamp;
57
58   private:
59         PBD::ID _id;
60 };
61
62 }
63
64 #endif /* __ardour_source_h__ */