mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
12 lines
325 B
C++
12 lines
325 B
C++
#ifndef PARSECMDLINE_HH
|
|
#define PARSECMDLINE_HH
|
|
|
|
#include <QStringList>
|
|
|
|
/// Given a command line (name of the executable with optional arguments),
|
|
/// separates-out the name and all the arguments into a list. Supports quotes
|
|
/// and double-quotes.
|
|
QStringList parseCommandLine( QString const & );
|
|
|
|
#endif // PARSECMDLINE_HH
|