Line data Source code
1 : /* File: gui_sketch_marker.inl; Copyright and License: see below */
2 :
3 : #include "u8/u8_trace.h"
4 : #include <assert.h>
5 :
6 4 : static inline void gui_sketch_marker_init( gui_sketch_marker_t *this_, bool with_pencil_markers )
7 : {
8 4 : (*this_).with_pencil_markers = with_pencil_markers;
9 4 : pencil_marker_init( &((*this_).pencil_marker) );
10 4 : }
11 :
12 4 : static inline void gui_sketch_marker_destroy( gui_sketch_marker_t *this_ )
13 : {
14 4 : pencil_marker_destroy( &((*this_).pencil_marker) );
15 4 : }
16 :
17 :
18 : /*
19 : Copyright 2018-2025 Andreas Warnke
20 :
21 : Licensed under the Apache License, Version 2.0 (the "License");
22 : you may not use this file except in compliance with the License.
23 : You may obtain a copy of the License at
24 :
25 : http://www.apache.org/licenses/LICENSE-2.0
26 :
27 : Unless required by applicable law or agreed to in writing, software
28 : distributed under the License is distributed on an "AS IS" BASIS,
29 : WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 : See the License for the specific language governing permissions and
31 : limitations under the License.
32 : */
|