2021-08-16 21:29:27 +01:00
|
|
|
/*
|
|
|
|
* libxlsxwriter
|
|
|
|
*
|
2024-02-26 18:47:32 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2025-02-11 00:03:36 +00:00
|
|
|
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org.
|
2021-08-16 21:29:27 +01:00
|
|
|
*
|
|
|
|
* table - A libxlsxwriter library for creating Excel XLSX table files.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __LXW_TABLE_H__
|
|
|
|
#define __LXW_TABLE_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Struct to represent a table object.
|
|
|
|
*/
|
|
|
|
typedef struct lxw_table {
|
|
|
|
|
|
|
|
FILE *file;
|
|
|
|
|
|
|
|
struct lxw_table_obj *table_obj;
|
|
|
|
|
|
|
|
} lxw_table;
|
|
|
|
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
lxw_table *lxw_table_new(void);
|
|
|
|
void lxw_table_free(lxw_table *table);
|
|
|
|
void lxw_table_assemble_xml_file(lxw_table *self);
|
|
|
|
|
|
|
|
/* Declarations required for unit testing. */
|
|
|
|
#ifdef TESTING
|
|
|
|
|
|
|
|
STATIC void _table_xml_declaration(lxw_table *self);
|
|
|
|
|
|
|
|
#endif /* TESTING */
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
#endif /* __LXW_TABLE_H__ */
|