add missing graph.cc and friends :S
[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
45         void prep( int chain );
46         void dec_ref();
47         void finish( int chain );
48
49         virtual void process();
50
51     private:
52         friend class Graph;
53
54         node_set_t  _activation_set[2];
55
56         boost::shared_ptr<Graph> _graph;
57
58         gint _refcount;
59         gint _init_refcount[2];
60 };
61
62 }
63
64 #endif