summaryrefslogtreecommitdiffstats
path: root/private/oleutest/perform/cairole/tests/bmp_test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'private/oleutest/perform/cairole/tests/bmp_test.hxx')
-rw-r--r--private/oleutest/perform/cairole/tests/bmp_test.hxx41
1 files changed, 41 insertions, 0 deletions
diff --git a/private/oleutest/perform/cairole/tests/bmp_test.hxx b/private/oleutest/perform/cairole/tests/bmp_test.hxx
new file mode 100644
index 000000000..d10770b74
--- /dev/null
+++ b/private/oleutest/perform/cairole/tests/bmp_test.hxx
@@ -0,0 +1,41 @@
+
+//
+// header file for bmp_test.cxx
+// see bmp_test.cxx for information
+//
+
+#ifndef _BMP_TEST_HXX_
+#define _BMP_TEST_HXX_
+
+#include <bm_parse.hxx>
+
+class CSimpleTest : public CTimerBase
+{
+public:
+ virtual SCODE SetParserObject ();
+ virtual SCODE DeleteParserObject ();
+
+ virtual WCHAR *Name ();
+ virtual WCHAR* SectionHeader ();
+};
+
+
+
+class CParserTest : public CParserBase
+{
+public:
+ virtual SCODE Setup (CTestInput *pInput);
+ virtual SCODE Cleanup ();
+
+ virtual ULONG ParseNewInstruction(LPWSTR pszNewInstruction);
+ virtual ULONG ExecuteInstruction(ULONG ulInstrID);
+ virtual WCHAR* InstructionName(ULONG ulInstrID);
+
+private:
+
+ ULONG m_iInstrID;
+ WCHAR m_wszBuf[30];
+};
+
+
+#endif