Engauge Digitizer 2
Loading...
Searching...
No Matches
UrlDirty.h
Go to the documentation of this file.
1/******************************************************************************************************
2 * (C) 2021 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5 ******************************************************************************************************/
6
7#ifndef URL_DIRTY_H
8#define URL_DIRTY_H
9
10#include <QUrl>
11
15class UrlDirty : public QUrl
16{
17 public:
19 UrlDirty ();
20
22 UrlDirty (const QUrl &other);
23
25 QString toLocalFile () const;
26};
27
28#endif // URL_DIRTY_H
QString toLocalFile() const
Override method to get string value to remove trailing whitepace.
Definition UrlDirty.cpp:18
UrlDirty()
Default constructor.
Definition UrlDirty.cpp:9