diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/llmessage/llsdappservices.h |
Print done when done.
Diffstat (limited to 'indra/llmessage/llsdappservices.h')
-rw-r--r-- | indra/llmessage/llsdappservices.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/indra/llmessage/llsdappservices.h b/indra/llmessage/llsdappservices.h new file mode 100644 index 0000000000..c9bc9570df --- /dev/null +++ b/indra/llmessage/llsdappservices.h @@ -0,0 +1,40 @@ +/** + * @file llsdappservices.h + * @author Phoenix + * @date 2006-09-12 + * @brief Header file to declare the /app common web services. + * + * Copyright (c) 2006-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLSDAPPSERVICES_H +#define LL_LLSDAPPSERVICES_H + +/** + * @class LLSDAppServices + * @brief This class forces a link to llsdappservices if the static + * method is called which declares the /app web services. + */ +class LLSDAppServices +{ +public: + /** + * @brief Call this method to declare the /app common web services. + * + * This will register: + * /app/config + * /app/config/runtime-override + * /app/config/runtime-override/<option-name> + * /app/config/command-line + * /app/config/specific + * /app/config/general + * /app/config/default + * /app/config/live + * /app/config/live/<option-name> + */ + static void useServices(); +}; + + +#endif // LL_LLSDAPPSERVICES_H |