mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-02-17 07:54:23 +00:00
* Added the ability to cache the last region * adding cli option * addressed typo comments and applied clang-format
14 lines
309 B
C++
14 lines
309 B
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// SPDX-FileCopyrightText: 2021 Jeremy Borgman
|
|
|
|
#ifndef FLAMESHOT_CACHEUTILS_H
|
|
#define FLAMESHOT_CACHEUTILS_H
|
|
|
|
class QString;
|
|
class QRect;
|
|
|
|
QString getCachePath();
|
|
QRect getLastRegion();
|
|
void setLastRegion(QRect const& newRegion);
|
|
|
|
#endif // FLAMESHOT_CACHEUTILS_H
|