replace ::cast_dynamic() with relevant ActionManager::get_*_action() calls
[ardour.git] / gtk2_ardour / opts.h
index 08e38be88d5a35ced96c29d0cee67021c1be9ddf..b95d931cc7bb3d45c48f767c447cd96b3357a13d 100644 (file)
@@ -1,6 +1,6 @@
 /*
     Copyright (C) 2001 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
 #define __ardour_opts_h__
 
 #include <string>
-#include <glibmm/ustring.h>
-
-using std::string;
 
 namespace ARDOUR_COMMAND_LINE {
 
-extern string session_name;
+extern std::string session_name;
 extern bool   show_key_actions;
+extern bool   show_actions;
 extern bool   no_splash;
 extern bool   just_version;
-extern string jack_client_name;
+extern std::string backend_client_name;
+extern std::string backend_session_uuid;
 extern bool   use_vst;
 extern bool   new_session;
 extern char*  curvetest_file;
 extern bool   try_hw_optimization;
+extern bool no_connect_ports;
 extern bool   use_gtk_theme;
-extern string keybindings_path;
-extern Glib::ustring menus_file;
+extern std::string keybindings_path;
+extern std::string menus_file;
 extern bool   finder_invoked_ardour;
+extern std::string immediate_save;
+extern std::string load_template;
+extern bool        check_announcements;
 
 extern int32_t parse_opts (int argc, char *argv[]);