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