00001 #ifndef SummaryEventsH 00002 #define SummaryEventsH 00003 00004 /******************************************************************************* 00005 Copyright 2002,2003 Petr Kulhanek 00006 00007 This file is part of Default plugin. 00008 00009 Default plugin is free software; you can redistribute it and/or modify 00010 it under the terms of the GNU General Public License as published by 00011 the Free Software Foundation; either version 2 of the License, or 00012 (at your option) any later version. 00013 00014 Default plugin is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with Default plugin; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 *******************************************************************************/ 00023 00027 #include "CoreMainHeader.h" 00028 #include "ExtObject.h" 00029 00030 //--------------------------------------------------------------------------- 00031 00033 00036 class NEMESIS_CORE_PACKAGE CSummaryEvents : public CExtObject{ 00037 public: 00038 __fastcall CSummaryEvents(void); 00039 00040 void __fastcall StartEvents(void); 00041 void __fastcall FinishEvents(void); 00042 00043 private: 00044 int Depth; 00045 }; 00046 00047 //--------------------------------------------------------------------------- 00048 00049 NEMESIS_CORE_PACKAGE CSummaryEvents SummaryEvents; 00050 00051 //--------------------------------------------------------------------------- 00052 00053 DECLARE_EVENT(SummaryEvents_Start); 00054 DECLARE_EVENT(SummaryEvents_Finish); 00055 00056 //--------------------------------------------------------------------------- 00057 00058 #endif