opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
tab_private.h
Go to the documentation of this file.
1#pragma once
2
6
7#include <string_view>
8
9namespace osc
10{
11 class TabPrivate : public WidgetPrivate {
12 public:
13 explicit TabPrivate(Tab& owner, Widget* parent, std::string_view name) :
15 {
17 }
18
19 UID id() const { return id_; }
20 private:
21 UID id_;
22 };
23}
Definition tab_private.h:11
UID id() const
Definition tab_private.h:19
TabPrivate(Tab &owner, Widget *parent, std::string_view name)
Definition tab_private.h:13
Definition tab.h:14
Definition uid.h:14
Definition widget_private.h:15
Widget * parent()
Definition widget_private.h:25
void set_name(std::string_view name)
Definition widget_private.h:31
CStringView name() const
Definition widget_private.h:30
Definition widget.h:26
Definition custom_decoration_generator.h:5
constexpr U to(T &&value)
Definition conversion.h:56