.autotest

git-svn-id: svn://ultimatepp.org/upp/trunk@15920 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2021-04-17 14:47:55 +00:00
parent e664ab0c3b
commit e1d5aa475c
3 changed files with 35 additions and 1 deletions

View file

@ -3,7 +3,7 @@
using namespace Upp;
struct StreamCopyFilter { // Simple filter example just prints amount of data processed
Callback2<const void *, int> WhenOut;
Event<const void *, int> WhenOut;
void Put(const void *ptr, int size) {
WhenOut(ptr, size);
}