Rapicorn - Experimental UI Toolkit - Source Code
13.07.0
|
00001 // Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html 00002 #ifndef __RAPICORN_CMDLIB_HH__ 00003 #define __RAPICORN_CMDLIB_HH__ 00004 00005 #include <ui/window.hh> 00006 00007 namespace Rapicorn { 00008 00009 bool command_lib_exec (WidgetImpl &widget, 00010 const String &cmd_name, 00011 const StringSeq &args); 00012 bool command_scan (const String &input, 00013 String *cmd_name, 00014 StringSeq *args); 00015 String command_string_unquote (const String &input); 00016 00017 } // Rapicorn 00018 00019 #endif /* __RAPICORN_CMDLIB_HH__ */