使用wxWidgets進行跨平台程式開發-zetcode_wxWidgets_helper_classes07(改寫)

使用wxWidgets進行跨平台程式開發-zetcode_wxWidgets_helper_classes07(改寫)

使用wxWidgets進行跨平台程式開發-zetcode_wxWidgets_helper_classes07(改寫)

 

zetcode_wxWidgets_helper_classes07(console application、wxPuts命令模式文字輸出-有換行、wxShell執行Linux Shell) 

 

#include <wx/string.h>
#include <wx/utils.h>
/*
http://zetcode.com/gui/wxwidgets/helperclasses/
wxWidgets has several handy utility functions for executing a process, getting a home user directory or getting the OS name.
In the following example, we execute the ls command. For this, we have the wxShell() function (Unix only).
*/
int main(int argc, char **argv)
{
wxShell(wxT("ls -l"));
}

 
 

 



發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *