Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 567 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 567 Bytes

FutoIn EventEmitter for C++

This is reference implementation for unified futoin::IEventEmitter API.

See FTN15: Native Event API for more details.

Usage

Please check [FutoIn C++ API][https://github.com/futoin/core-cpp-api] for example of usage.

#include <futoin/iasynctool.hpp>
#include <futoin/ri/eventemitter.hpp>

class MyExample : public futoin::ri::EventEmitter {
private:
    MyExample(futoin::IAsyncTool& async_tool) :
        EventEmitter(async_tool)
    {}
};