コード例 #1
0
 /** \brief ctor
  *
  * - initialize root node */
 node_graph(void):
     root_group_(0), synth_count_(0), group_count_(1),
     node_set(node_set_type::bucket_traits(node_buckets, node_set_bucket_count)), generated_id(-2)
 {
     root_group_.add_ref();
     node_set.insert(root_group_);
 }
コード例 #2
0
ファイル: node_graph.hpp プロジェクト: 8c6794b6/supercollider
 /** \brief ctor
  *
  * - initialize root node */
 node_graph(void):
     node_set(node_set_type::bucket_traits(node_buckets, node_set_bucket_count))
 {
     node_set.insert(root_group_);
     root_group_.add_ref();
 }