#include "bbtkSystem.h" namespace bbtk { #ifdef _WIN32 int System::HasTTY() { return false; } #else #include int System::HasTTY() { return isatty(fileno(stdin)); } #endif } // namespace bbtk