/indra/llmessage/llareslistener.h
https://bitbucket.org/lindenlab/viewer-beta/ · C++ Header · 53 lines · 14 code · 7 blank · 32 comment · 0 complexity · 388fffcf896fbf5efeb202f2364eb753 MD5 · raw file
- /**
- * @file llareslistener.h
- * @author Nat Goodspeed
- * @date 2009-03-18
- * @brief LLEventPump API for LLAres. This header doesn't actually define the
- * API; the API is defined by the pump name on which this class
- * listens, and by the expected content of LLSD it receives.
- *
- * $LicenseInfo:firstyear=2009&license=viewerlgpl$
- * Second Life Viewer Source Code
- * Copyright (C) 2010, Linden Research, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation;
- * version 2.1 of the License only.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
- * $/LicenseInfo$
- */
- #if ! defined(LL_LLARESLISTENER_H)
- #define LL_LLARESLISTENER_H
- #include "lleventapi.h"
- class LLAres;
- class LLSD;
- /// Listen on an LLEventPump with specified name for LLAres request events.
- class LLAresListener: public LLEventAPI
- {
- public:
- /// Bind the LLAres instance to use (e.g. gAres)
- LLAresListener(LLAres* llares);
- private:
- /// command["op"] == "rewriteURI"
- void rewriteURI(const LLSD& data);
- LLAres* mAres;
- };
- #endif /* ! defined(LL_LLARESLISTENER_H) */