File size: 359 Bytes
985c397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# SPDX-License-Identifier: LGPL-2.1-or-later

from Base.Metadata import export
from Base.BaseClass import BaseClass

@export(
    Include="Gui/Navigation/NavigationStyle.h",
)
class NavigationStyle(BaseClass):
    """
    This is the base class for navigation styles

    Author: Werner Mayer (wmayer@users.sourceforge.net)
    Licence: LGPL
    """

    ...