/** * @file llappviewerlistener.h * @author Nat Goodspeed * @date 2009-06-18 * @brief Wrap subset of LLAppViewer API in event API * * $LicenseInfo:firstyear=2009&license=viewergpl$ * Copyright (c) 2009, Linden Research, Inc. * $/LicenseInfo$ */ #if ! defined(LL_LLAPPVIEWERLISTENER_H) #define LL_LLAPPVIEWERLISTENER_H #include "lleventapi.h" #include class LLAppViewer; class LLSD; /// Listen on an LLEventPump with specified name for LLAppViewer request events. class LLAppViewerListener: public LLEventAPI { public: typedef boost::function LLAppViewerGetter; /// Bind the LLAppViewer instance to use (e.g. LLAppViewer::instance()). LLAppViewerListener(const LLAppViewerGetter& getter); private: void requestQuit(const LLSD& event); void forceQuit(const LLSD& event); LLAppViewerGetter mAppViewerGetter; }; #endif /* ! defined(LL_LLAPPVIEWERLISTENER_H) */