Warning, file /maui/mauiman/server/src/main.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #include "server.h" 0002 0003 int main(int argc, char *argv[]) 0004 { 0005 Server s(argc, argv); 0006 // s.setQuitOnLastWindowClosed(false); 0007 if(!s.init()) 0008 { 0009 QCoreApplication::exit(-1); 0010 return -1; 0011 } 0012 0013 return s.exec(); 0014 }