opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
cursor.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace osc
6{
7 class Cursor final {
8 public:
9 Cursor() = default;
10 explicit Cursor(CursorShape shape) : shape_{shape} {}
11
12 CursorShape shape() const { return shape_; }
13 private:
15 };
16}
Definition cursor.h:7
Cursor(CursorShape shape)
Definition cursor.h:10
Cursor()=default
CursorShape shape() const
Definition cursor.h:12
Definition custom_decoration_generator.h:5
constexpr U to(T &&value)
Definition conversion.h:56
CursorShape
Definition cursor_shape.h:5