Fix missing virtual destructors.
[ardour.git] / libs / ardour / ardour / graphnode.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 */
19
20
21 #ifndef __ardour_graphnode_h__
22 #define __ardour_graphnode_h__
23
24 #include <list>
25 #include <set>
26 #include <vector>
27
28 #include <boost/shared_ptr.hpp>
29
30 namespace ARDOUR
31 {
32
33 class Graph;
34 class GraphNode;
35
36 typedef boost::shared_ptr<GraphNode> node_ptr_t;
37 typedef std::set< node_ptr_t > node_set_t;
38 typedef std::list< node_ptr_t > node_list_t;
39
40 class GraphNode
41 {
42     public:
43         GraphNode( boost::shared_ptr<Graph> Graph );
44         virtual ~GraphNode();
45
46         void prep( int chain );
47         void dec_ref();
48         void finish( int chain );
49
50         virtual void process();
51
52     private:
53         friend class Graph;
54
55         node_set_t  _activation_set[2];
56
57         boost::shared_ptr<Graph> _graph;
58
59         gint _refcount;
60         gint _init_refcount[2];
61 };
62
63 }
64
65 #endif