1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /** @file
3  * TODO: insert short description here
4  *//*
5  * Authors: see git history
6  *
7  * Copyright (C) 2018 Authors
8  * Released under GNU GPL v2+, read the file 'COPYING' for more information.
9  */
10 #ifndef SEEN_SP_FILTER_UNITS_H
11 #define SEEN_SP_FILTER_UNITS_H
12 
13 enum SPFilterUnits {
14     SP_FILTER_UNITS_OBJECTBOUNDINGBOX,
15     SP_FILTER_UNITS_USERSPACEONUSE
16 };
17 
18 
19 #endif /* !SEEN_SP_FILTER_UNITS_H */
20 
21 /*
22   Local Variables:
23   mode:c++
24   c-file-style:"stroustrup"
25   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
26   indent-tabs-mode:nil
27   fill-column:99
28   End:
29 */
30 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
31