blob: 1ffdb1996ee3d0cbe77bae090553bd80a8531d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors:
* see git history
* John Cliff <simarilius@yahoo.com>
*
* Copyright (C) 2012 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_INK_STOCK_ITEMS_H
#define SEEN_INK_STOCK_ITEMS_H
#include <glib.h>
#include <vector>
#include <memory>
class SPObject;
class SPDocument;
SPObject *get_stock_item(gchar const *urn, bool stock = false, SPDocument* stock_doc = nullptr);
std::vector<std::shared_ptr<SPDocument>> sp_get_paint_documents(const std::function<bool (SPDocument*)>& filter);
#endif // SEEN_INK_STOCK_ITEMS_H
|