Scroom 0.14-48-ga0fee447
Loading...
Searching...
No Matches
stuff.hh
Go to the documentation of this file.
1/*
2 * Scroom - Generic viewer for 2D data
3 * Copyright (C) 2009-2026 Kees-Jan Dijkzeul
4 *
5 * SPDX-License-Identifier: LGPL-2.1
6 */
7
8#pragma once
9
10#include <list>
11#include <memory>
12
13
14namespace Scroom::Utils
15{
17 using Stuff = std::shared_ptr<void>;
18 using StuffWeak = std::weak_ptr<void>;
19 using StuffList = std::list<Stuff>;
20
21 inline Stuff Empty() { return {}; }
22} // namespace Scroom::Utils
Definition tweak-view.hh:22
Stuff Empty()
Definition stuff.hh:21
std::shared_ptr< void > Stuff
Definition stuff.hh:17
std::list< Stuff > StuffList
Definition stuff.hh:19
std::weak_ptr< void > StuffWeak
Definition stuff.hh:18