/usr/share/codelite/templates/gizmos/main.cpp.wizard is in codelite-plugins 2.8.0.4537~dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <wx/init.h> //wxInitializer
#include <wx/string.h> //wxString
int main(int argc, char **argv)
{
//Initialize the wxWidgets library
wxInitializer initializer;
//Print the classic hello world
wxString msg(wxT("Hello World"));
wxPrintf(wxT("%s\n"), msg.GetData());
return 0;
}
|