diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-07-10 18:29:10 -0700 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-07-10 18:29:10 -0700 |
commit | da038e6c8f2f2db10c610337d6aa9a7e8622f3b4 (patch) | |
tree | 38d32fe540c581f7ea49f5527197552146c38fc3 /indra/newview/llappviewer.h | |
parent | b6fec6f1fc30e6362471d442edda32d841bf30a1 (diff) |
First draft of cleaning up eventhost module on viewer shutdown. Still need to make the whole system more generalized and data driven.
Diffstat (limited to 'indra/newview/llappviewer.h')
-rw-r--r-- | indra/newview/llappviewer.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h index 1227ab470f..69f2a074aa 100644 --- a/indra/newview/llappviewer.h +++ b/indra/newview/llappviewer.h @@ -47,6 +47,7 @@ class LLVFS; class LLWatchdogTimeout; class LLWorkerThread; +struct apr_dso_handle_t;
class LLAppViewer : public LLApp @@ -204,7 +205,7 @@ private: void sendLogoutRequest(); void disconnectViewer(); - void loadEventHostModule(S32 listen_port) const; + void loadEventHostModule(S32 listen_port); // *FIX: the app viewer class should be some sort of singleton, no? // Perhaps its child class is the singleton and this should be an abstract base. @@ -251,6 +252,8 @@ private: LLAllocator mAlloc; + std::set<struct apr_dso_handle_t*> mPlugins; + public: //some information for updater typedef struct |