mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-03-25 17:40:06 +00:00
* Cppcheck and clazy warning fixes * Clang-format * Revert QRect call by value * Revert QPoint call by value * Revert complained renamings --------- Co-authored-by: Haris Gušić <harisgusic.dev@gmail.com>
15 lines
310 B
C++
15 lines
310 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
|