mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 10:08:28 +08:00
13 lines
160 B
C++
13 lines
160 B
C++
#ifndef COMMAND_H
|
|
#define COMMAND_H
|
|
#include <QString>
|
|
|
|
class Command
|
|
{
|
|
public:
|
|
Command();
|
|
QString GetCommand(QString command);
|
|
};
|
|
|
|
#endif // COMMAND_H
|