opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
close_tab_event.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace osc
7{
8 class CloseTabEvent final : public Event {
9 public:
11 tabid_to_close_{tabid_to_close}
12 {
14 }
15
16 UID tabid_to_close() const { return tabid_to_close_; }
17 private:
18 UID tabid_to_close_;
19 };
20}
Definition close_tab_event.h:8
CloseTabEvent(UID tabid_to_close)
Definition close_tab_event.h:10
UID tabid_to_close() const
Definition close_tab_event.h:16
Definition event.h:13
void enable_propagation()
Definition event.h:27
Definition uid.h:14
Definition custom_decoration_generator.h:5
constexpr U to(T &&value)
Definition conversion.h:56