Sparkle 0.0.1
Loading...
Searching...
No Matches
spk_orientation.hpp
1#pragma once
2
3#include <ostream>
4#include <string>
5
6namespace spk
7{
8 enum class Orientation
9 {
10 Vertical,
11 Horizontal
12 };
13
14 std::string toString(const Orientation &p_orientation);
15 std::wstring toWstring(const Orientation &p_orientation);
16
17 std::ostream &operator<<(std::ostream &p_stream, const Orientation &p_orientation);
18 std::wostream &operator<<(std::wostream &p_stream, const Orientation &p_orientation);
19}