mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
15 lines
223 B
C++
15 lines
223 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class CommandManager
|
|
{
|
|
public:
|
|
static CommandManager& Get()
|
|
{
|
|
static CommandManager instance;
|
|
return instance;
|
|
}
|
|
|
|
void Push(const std::string& command, const std::string& value);
|
|
|
|
}; |