mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 01:58:27 +08:00
17 lines
202 B
C++
17 lines
202 B
C++
/*
|
|
* gfdgd xi
|
|
* 依照 GPLV3 开源
|
|
*/
|
|
#ifndef COMMAND_H
|
|
#define COMMAND_H
|
|
#include <QString>
|
|
|
|
class Command
|
|
{
|
|
public:
|
|
Command();
|
|
QString GetCommand(QString command);
|
|
};
|
|
|
|
#endif // COMMAND_H
|