Fixed DevStudio 2003 build with memory check code.
[pwlib.git] / samples / vxmltest / main.h
blobc0e42e07ffc8c08b1bbfcc8ac619dc09ed67448e
1 /*
2 * main.h
4 * PWLib application header file for vxmltest
6 * Copyright 2002 Equivalence
8 * $Log$
9 * Revision 1.3 2006/06/21 03:28:43 csoutheren
10 * Various cleanups thanks for Frederic Heem
12 * Revision 1.2 2004/06/02 08:30:22 csoutheren
13 * Tweaks to avoid some problems with reading single bytes from a PCM stream
15 * Revision 1.1 2002/08/06 05:26:33 craigs
16 * Initial version
20 #ifndef _Vxmltest_MAIN_H
21 #define _Vxmltest_MAIN_H
23 #include <ptlib/pprocess.h>
25 class PVXMLSession;
27 class Vxmltest : public PProcess
29 PCLASSINFO(Vxmltest, PProcess)
31 public:
32 Vxmltest();
33 void Main();
34 PDECLARE_NOTIFIER(PThread, Vxmltest, InputThread);
36 protected:
37 BOOL inputRunning;
38 PVXMLSession * vxml;
42 #endif // _Vxmltest_MAIN_H
45 // End of File ///////////////////////////////////////////////////////////////