// ConsoleIO.h
//
// Author David Barrett-Lennard
// (C)opyright Cedanet Pty Ltd 2017
#pragma once
#ifndef Ceda_cxUtils_ConsoleIO_H
#define Ceda_cxUtils_ConsoleIO_H
#include "cxUtils.h"
namespace ceda
{
// Platform independent support for _kbhit()
cxUtils_API int console_kbhit();
// Platform independent support for _getch()
cxUtils_API char console_getch();
} // namespace ceda
#endif // include guard