summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/graph.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-04-22 21:27:00 +0200
committerRobin Gareus <robin@gareus.org>2017-04-22 23:06:22 +0200
commit8969ded7e1ebe8982a7d3df11237631a0fa3cf48 (patch)
treeaf3f97e58ad5d732eb8b50135014664fd68596f5 /libs/ardour/ardour/graph.h
parentb81d6a6160945319cb30a31986908905b865014b (diff)
Privatize non-public methods
Diffstat (limited to 'libs/ardour/ardour/graph.h')
-rw-r--r--libs/ardour/ardour/graph.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/libs/ardour/ardour/graph.h b/libs/ardour/ardour/graph.h
index 239f9ad1ab..46c9f5e26e 100644
--- a/libs/ardour/ardour/graph.h
+++ b/libs/ardour/ardour/graph.h
@@ -57,18 +57,13 @@ class LIBARDOUR_API Graph : public SessionHandleRef
public:
Graph (Session & session);
- void prep();
void trigger (GraphNode * n);
void rechain (boost::shared_ptr<RouteList>, GraphEdges const &);
void dump (int chain);
- void process();
void dec_ref();
- void restart_cycle();
- bool run_one();
void helper_thread();
- void main_thread();
int silent_process_routes (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
bool& need_butler);
@@ -93,6 +88,10 @@ private:
void reset_thread_list ();
void drop_threads ();
+ void restart_cycle();
+ bool run_one();
+ void main_thread();
+ void prep();
node_list_t _nodes_rt[2];