Add test synth to debug capture alignment
[ardour.git] / libs / pbd / enums.cc
index 5e68824bac08fae8a2839e9c90cd36b38e69bbab..ee4595752f193a34fa687bec4230e1a974f76d39 100644 (file)
@@ -1,21 +1,20 @@
 /*
-    Copyright (C) 2009 Paul Davis
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2009-2016 Paul Davis <paul@linuxaudiosystems.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #include "pbd/controllable.h"
 #include "pbd/enumwriter.h"
@@ -39,11 +38,14 @@ setup_libpbd_enums ()
 
        REGISTER_CLASS_ENUM (Controllable, Toggle);
        REGISTER_CLASS_ENUM (Controllable, GainLike);
-       REGISTER (controllable_flags);
+       REGISTER_CLASS_ENUM (Controllable, RealTime);
+       REGISTER_CLASS_ENUM (Controllable, NotAutomatable);
+       REGISTER_BITS (controllable_flags);
 
-       REGISTER_CLASS_ENUM (Controllable, WholeGroup);
+       REGISTER_CLASS_ENUM (Controllable, InverseGroup);
        REGISTER_CLASS_ENUM (Controllable, UseGroup);
        REGISTER_CLASS_ENUM (Controllable, NoGroup);
+       REGISTER_CLASS_ENUM (Controllable, ForGroup);
        REGISTER (controllable_group_disposition);
 
 }