From b96f78a0b70b2242d0a870d0e3efa6b45a1ab5e0 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sun, 23 Jul 2017 08:49:04 -0400 Subject: [PATCH] Update IAppSystem for latest DoI update. --- public/appframework/IAppSystem.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/appframework/IAppSystem.h b/public/appframework/IAppSystem.h index 20f9285c..b3fe53bb 100644 --- a/public/appframework/IAppSystem.h +++ b/public/appframework/IAppSystem.h @@ -76,6 +76,9 @@ public: // Reconnect to a particular interface virtual void Reconnect( CreateInterfaceFn factory, const char *pInterfaceName ) = 0; + + // Returns whether or not the app system is a singleton + virtual bool IsSingleton() = 0; }; @@ -105,6 +108,8 @@ public: { ReconnectInterface( factory, pInterfaceName ); } + + virtual bool IsSingleton() { return true; } };