libASPL
Loading...
Searching...
No Matches
Direction.hpp
Go to the documentation of this file.
1// Copyright (c) libASPL authors
2// Licensed under MIT
3
4//! @file aspl/Direction.hpp
5//! @brief I/O direction.
6
7#pragma once
8
9#include <CoreFoundation/CoreFoundation.h>
10
11namespace aspl {
12
13//! I/O direction.
14enum class Direction : UInt32
15{
16 Output = 0, //!< Output direction.
17 Input = 1, //!< Input direction.
18};
19
20} // namespace aspl
Direction
I/O direction.
Definition Direction.hpp:15
@ Output
Output direction.
@ Input
Input direction.