mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-14 11:47:15 +01:00
29 lines
470 B
C
29 lines
470 B
C
|
//
|
||
|
// DummyDelegate.h
|
||
|
//
|
||
|
// Definition of DummyDelegate class.
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef DummyDelegate_INCLUDED
|
||
|
#define DummyDelegate_INCLUDED
|
||
|
|
||
|
|
||
|
class DummyDelegate
|
||
|
{
|
||
|
public:
|
||
|
DummyDelegate();
|
||
|
virtual ~DummyDelegate();
|
||
|
|
||
|
void onSimple(const void* pSender, int& i);
|
||
|
void onSimple2(const void* pSender, int& i);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // DummyDelegate_INCLUDED
|