1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-26 10:41:47 +02:00

Update POCO library.

This commit is contained in:
Sandu Liviu Catalin
2023-03-23 20:19:11 +02:00
parent 8d15f4b6e9
commit 233fc103f9
2521 changed files with 257092 additions and 72789 deletions

View File

@@ -24,20 +24,20 @@
namespace Poco {
template <class TKey, class TValue>
template <class TKey, class TValue>
class KeyValueArgs
/// Simply event arguments class to transfer a key and a value via an event call.
/// Note that key and value are *NOT* copied, only references to them are stored.
{
public:
KeyValueArgs(const TKey& aKey, const TValue& aVal):
_key(aKey),
KeyValueArgs(const TKey& aKey, const TValue& aVal):
_key(aKey),
_value(aVal)
{
}
KeyValueArgs(const KeyValueArgs& args):
_key(args._key),
_key(args._key),
_value(args._value)
{
}