File tree 1 file changed +0
-23
lines changed
1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -21,29 +21,6 @@ email : david dot marteau at 3liz dot com
21
21
22
22
namespace QgsWms
23
23
{
24
-
25
- namespace
26
- {
27
-
28
- QMap<QString, QString> parseFormatOptions ( const QString &optionString )
29
- {
30
- QMap<QString, QString> options;
31
-
32
- QStringList optionsList = optionString.split ( ' ;' );
33
- for ( auto optionsIt = optionsList.constBegin (); optionsIt != optionsList.constEnd (); ++optionsIt )
34
- {
35
- int equalIdx = optionsIt->indexOf ( ' :' );
36
- if ( equalIdx > 0 && equalIdx < ( optionsIt->length () - 1 ) )
37
- {
38
- options.insert ( optionsIt->left ( equalIdx ).toUpper (),
39
- optionsIt->right ( optionsIt->length () - equalIdx - 1 ).toUpper () );
40
- }
41
- }
42
- return options;
43
- }
44
-
45
- }
46
-
47
24
void writeAsDxf ( QgsServerInterface *serverIface, const QgsProject *project,
48
25
const QString &version, const QgsServerRequest &request,
49
26
QgsServerResponse &response )
You can’t perform that action at this time.
0 commit comments