From 802e2d77c00377d55d4df4a61b87b0b9c6ffe8fe Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Wed, 22 Sep 2021 13:21:07 +0800 Subject: [PATCH] refact --- include/dnode/dnode.h | 27 +++++++++++++++++++++++++++ include/mnode/mnode.h | 27 +++++++++++++++++++++++++++ include/qnode/qnode.h | 27 +++++++++++++++++++++++++++ include/tkv/tkv.h | 27 +++++++++++++++++++++++++++ 4 files changed, 108 insertions(+) create mode 100644 include/dnode/dnode.h create mode 100644 include/mnode/mnode.h create mode 100644 include/qnode/qnode.h diff --git a/include/dnode/dnode.h b/include/dnode/dnode.h new file mode 100644 index 0000000000..0fe5a66238 --- /dev/null +++ b/include/dnode/dnode.h @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2019 TAOS Data, Inc. + * + * This program is free software: you can use, redistribute, and/or modify + * it under the terms of the GNU Affero General Public License, version 3 + * or later ("AGPL"), as published by the Free Software Foundation. + * + * 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. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#ifndef _TD_DNODE_H_ +#define _TD_DNODE_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*_TD_DNODE_H_*/ \ No newline at end of file diff --git a/include/mnode/mnode.h b/include/mnode/mnode.h new file mode 100644 index 0000000000..d458d3a91f --- /dev/null +++ b/include/mnode/mnode.h @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2019 TAOS Data, Inc. + * + * This program is free software: you can use, redistribute, and/or modify + * it under the terms of the GNU Affero General Public License, version 3 + * or later ("AGPL"), as published by the Free Software Foundation. + * + * 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. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#ifndef _TD_MNODE_H_ +#define _TD_MNODE_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*_TD_MNODE_H_*/ \ No newline at end of file diff --git a/include/qnode/qnode.h b/include/qnode/qnode.h new file mode 100644 index 0000000000..00daf2b051 --- /dev/null +++ b/include/qnode/qnode.h @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2019 TAOS Data, Inc. + * + * This program is free software: you can use, redistribute, and/or modify + * it under the terms of the GNU Affero General Public License, version 3 + * or later ("AGPL"), as published by the Free Software Foundation. + * + * 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. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#ifndef _TD_QNODE_H_ +#define _TD_QNODE_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*_TD_QNODE_H_*/ \ No newline at end of file diff --git a/include/tkv/tkv.h b/include/tkv/tkv.h index e69de29bb2..6072525f88 100644 --- a/include/tkv/tkv.h +++ b/include/tkv/tkv.h @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2019 TAOS Data, Inc. + * + * This program is free software: you can use, redistribute, and/or modify + * it under the terms of the GNU Affero General Public License, version 3 + * or later ("AGPL"), as published by the Free Software Foundation. + * + * 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. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#ifndef _TD_TKV_H_ +#define _TD_TKV_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*_TD_TKV_H_*/ \ No newline at end of file -- GitLab