aboutsummaryrefslogtreecommitdiff
path: root/SignalLevel.h
blob: 81c7ff865690015bb1262025748b7f35485bb061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

enum SignalLevel {
	LOW,
	HIGH,
	UNDEFINED
};

namespace std {
	std::string to_string(SignalLevel level);
}