Shows how to create a work thread that returns a result and posts to a concurrent queue while working. The custom work thread is created using std::thread.
Shows how to create a work thread that returns a result and posts to a concurrent queue while working. The custom work thread is created using std::async.
Shows how to create a work thread that returns a result and posts to a concurrent queue while working. The custom work thread is created using a service framework Async service. This allows the work thread to access other framework services.
Shows how to create a freestyle console based application using the demoframework. This console app has access to the normal graphics libraries.
Shows how to create a freestyle minimal console based application using the demoframework. This minimal app does not pull in any of the graphics libraries.
A example of how to register custom app specific services.