22 lines
400 B
C++
22 lines
400 B
C++
/***
|
|
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: EStandardStream.hpp
|
|
Date: 2023-9-13
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO
|
|
{
|
|
AUE_DEFINE_VA(EStandardStream,
|
|
// Process Input Stream
|
|
eInputStream,
|
|
|
|
// Process Output Stream
|
|
eOutputStream,
|
|
|
|
// Process Error Stream
|
|
eErrorStream
|
|
);
|
|
} |