awtk/src/svg/svg_path_parser.h
2019-12-31 19:27:36 -08:00

34 lines
779 B
C

/**
* File: svg_path_parser.h
* Author: AWTK Develop Team
* Brief: svg path_parser
*
* Copyright (c) 2018 - 2020 Guangzhou ZHIYUAN Electronics Co.,Ltd.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2018-11-17 Li XianJing <xianjimli@hotmail.com> created
*
*/
#ifndef TK_SVG_PATH_BUILDER_H
#define TK_SVG_PATH_BUILDER_H
#include "tkc/types_def.h"
BEGIN_C_DECLS
ret_t svg_path_parse(const char* path, void* ctx, tk_visit_t on_path);
END_C_DECLS
#endif /*TK_SVG_PATH_BUILDER_H*/