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