summaryrefslogtreecommitdiff
path: root/indra/newview/lldebugview.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/lldebugview.h
Print done when done.
Diffstat (limited to 'indra/newview/lldebugview.h')
-rw-r--r--indra/newview/lldebugview.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/indra/newview/lldebugview.h b/indra/newview/lldebugview.h
new file mode 100644
index 0000000000..5406099189
--- /dev/null
+++ b/indra/newview/lldebugview.h
@@ -0,0 +1,46 @@
+/**
+ * @file lldebugview.h
+ * @brief A view containing debug UI elements
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLDEBUGVIEW_H
+#define LL_LLDEBUGVIEW_H
+
+// requires:
+// stdtypes.h
+
+#include "llview.h"
+
+// declarations
+class LLButton;
+class LLToolView;
+class LLStatusPanel;
+class LLFrameStatView;
+class LLFastTimerView;
+class LLMemoryView;
+class LLConsole;
+class LLTextureView;
+class LLContainerView;
+
+class LLDebugView : public LLView
+{
+public:
+ LLDebugView(const std::string& name, const LLRect &rect);
+ ~LLDebugView();
+
+ virtual EWidgetType getWidgetType() const;
+ virtual LLString getWidgetTag() const;
+
+ LLFrameStatView* mFrameStatView;
+ LLFastTimerView* mFastTimerView;
+ LLMemoryView* mMemoryView;
+ LLConsole* mDebugConsolep;
+ LLContainerView* mStatViewp;
+};
+
+extern LLDebugView* gDebugView;
+
+#endif