make MementoCommand inherit from sigc::trackable so that we don't double-call its...
[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
28 #include <pbd/statefuldestructible.h> 
29
30 #include <ardour/ardour.h>
31
32 namespace ARDOUR {
33
34 class Session;
35
36 class Source : public PBD::StatefulDestructible
37 {
38   public:
39         Source (Session&, std::string name);
40         Source (Session&, const XMLNode&);
41         virtual ~Source ();
42
43         std::string name() const { return _name; }
44         int set_name (std::string str, bool destructive);
45
46         time_t timestamp() const { return _timestamp; }
47         void stamp (time_t when) { _timestamp = when; }
48
49         XMLNode& get_state ();
50         int set_state (const XMLNode&);
51
52
53   protected:
54         Session&          _session;
55         string            _name;
56         time_t            _timestamp;
57
58   private:
59 };
60
61 }
62
63 #endif /* __ardour_source_h__ */