GOG GALAXY SDK Documentation
ShutdownOptions.h
Go to the documentation of this file.
1 #ifndef GALAXY_SHUTDOWN_OPTIONS_H
2 #define GALAXY_SHUTDOWN_OPTIONS_H
3 
9 namespace galaxy
10 {
11  namespace api
12  {
22  {
28  ShutdownOptions(bool _preserveStaticObjects = false)
29  : preserveStaticObjects(_preserveStaticObjects)
30  {}
31 
32 
33  bool preserveStaticObjects;
34  };
35 
37  }
38 }
39 
40 #endif
The group of options used for Shutdown options.
Definition: ShutdownOptions.h:22
ShutdownOptions(bool _preserveStaticObjects=false)
ShutdownOptions constructor.
Definition: ShutdownOptions.h:28