mirror of
https://github.com/wqking/eventpp.git
synced 2024-12-28 09:08:17 +08:00
44 lines
1.7 KiB
C++
44 lines
1.7 KiB
C++
// eventpp library
|
|
// Copyright (C) 2018 Wang Qi (wqking)
|
|
// Github: https://github.com/wqking/eventpp
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "test.h"
|
|
#include "eventpp/hetereventdispatcher.h"
|
|
|
|
#include <iostream>
|
|
|
|
using namespace eventpp;
|
|
struct xxx{};
|
|
TEST_CASE("HeterEventDispatcher, xxx")
|
|
{
|
|
static_assert(CanConvert<std::tuple<int, int>, std::tuple<int ,int> >::value, "");
|
|
static_assert(FindCallablePrototype<PrototypeList<void (), void (int, int)> >::index == 0, "");
|
|
static_assert(FindCallablePrototype<PrototypeList<void (int), void (int, int)>, char>::index == 0, "");
|
|
static_assert(FindCallablePrototype<PrototypeList<void (int), void (int, int)>, char, int>::index == 1, "");
|
|
static_assert(FindCallablePrototype<PrototypeList<void (int), void (int, int), void (int, const xxx &)>, int, xxx>::index == 2, "");
|
|
|
|
HeterEventDispatcher<int, PrototypeList<void (), void (int)> > a;
|
|
a.appendListener(3, std::function<void ()>([]() {
|
|
std::cout << "empty" << std::endl;
|
|
}));
|
|
a.appendListener(3, std::function<void (int)>([](int a) {
|
|
std::cout << "3 a = " << a << std::endl;
|
|
}));
|
|
a.appendListener(8, std::function<void (int)>([](int a) {
|
|
std::cout << "8 a = " << a << std::endl;
|
|
}));
|
|
a.dispatch(3);
|
|
a.dispatch(8);
|
|
//a.dispatch(8, 5);
|
|
}
|
|
|