mirror of
				https://gitee.com/gfdgd-xi/deep-wine-runner
				synced 2025-11-04 15:32:23 +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
 |