Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef DEBUGGER_DEFAULT_EVENT_HANDLER_H
00017 #define DEBUGGER_DEFAULT_EVENT_HANDLER_H
00018
00019 #include <zorba/debugger_event_handler.h>
00020
00021 namespace zorba{
00022
00023 class ZORBA_DLL_PUBLIC DefaultDebuggerEventHandler: public DebuggerEventHandler
00024 {
00025 public:
00026
00027 virtual ~DefaultDebuggerEventHandler();
00028
00029 void started();
00030
00031 void idle();
00032
00033 void suspended( QueryLocation & aLocation, SuspendedBy aCause );
00034
00035 void resumed();
00036
00037 void terminated();
00038
00039 virtual void
00040 evaluated(String &anExpr, std::list<std::pair<String, String> > &aValuesAndTypes);
00041
00042 virtual void
00043 evaluated(String &anExpr, String &anError);
00044 };
00045 }
00046 #endif
00047