xtd 0.2.0
action.h
Go to the documentation of this file.
1 #pragma once
5 #include "delegate.h"
6 
8 namespace xtd {
17  template<typename... arguments_t>
18  using action = delegate <void(arguments_t...)>;
19 }
Contains xtd::delegate delegate.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
delegate< void(arguments_t...)> action
Represents a xtd::delegate that has variable parameters and does not return a value.
Definition: action.h:18