latest sources from main repository

This commit is contained in:
Guenter Obiltschnig
2007-06-13 15:13:29 +00:00
parent 0b2b989a95
commit 9913f74f8d
44 changed files with 1891 additions and 239 deletions

View File

@@ -1,7 +1,7 @@
//
// BasicEventTest.h
//
// $Id: //poco/Main/Foundation/testsuite/src/BasicEventTest.h#8 $
// $Id: //poco/Main/Foundation/testsuite/src/BasicEventTest.h#9 $
//
// Tests for BasicEvent
//
@@ -71,6 +71,10 @@ public:
protected:
static void onStaticSimple(const void* pSender, int& i);
static void onStaticSimple2(void* pSender, int& i);
static void onStaticSimple3(int& i);
void onSimpleNoSender(int& i);
void onSimple(const void* pSender, int& i);
void onSimpleOther(const void* pSender, int& i);
void onConstSimple(const void* pSender, const int& i);