mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 11:15:13 +00:00
20 lines
399 B
C++
20 lines
399 B
C++
//
|
|
// Created by ax on 25/09/16.
|
|
//
|
|
|
|
#ifndef LIBWEBRTC_UNIXCONSOLE_H
|
|
#define LIBWEBRTC_UNIXCONSOLE_H
|
|
|
|
class Console {
|
|
public:
|
|
static bool Init();
|
|
static bool Update(std::string &input);
|
|
static void Cleanup();
|
|
static void Reset(int num);
|
|
static void Print(const std::string &line, ...);
|
|
static void Show();
|
|
static void Hide();
|
|
static void Back();
|
|
};
|
|
|
|
#endif //LIBWEBRTC_UNIXCONSOLE_H
|