CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
predicate.h
1
3#ifndef _aspose_system_predicate_h_
4#define _aspose_system_predicate_h_
5
6#include "system/multicast_delegate.h"
7
8namespace System
9{
10
40template<class T>
41using Predicate = MulticastDelegate<bool(T)>;
42
43}
44
45#endif
Definition: db_command.h:9
MulticastDelegate< bool(T)> Predicate
Represents a pointer to a predicate - an invokable entity that accepts a single argument and returns ...
Definition: predicate.h:41