Completely reorganize the library, moving up to Qt 5.4, using C++11 where reasonably possible, and reorganizing the includes.

This commit is contained in:
Nathan Osman
2016-10-06 21:50:45 -07:00
parent 7930ef4a50
commit 7c460edb57
48 changed files with 312 additions and 247 deletions

View File

@@ -72,7 +72,7 @@ int main(int argc, char * argv[])
QHttpServer server(&handler);
// Attempt to listen on the specified port
if(!server.listen(address, port)) {
if (!server.listen(address, port)) {
qCritical("Unable to listen on the specified port.");
return 1;
}