1 Star 0 Fork 3

411592004/DesignPatternInC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DecoratorBlackBorder.h 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
GoodmanTao 提交于 2019-04-21 22:37 +08:00 . init
#include <apr_pools.h>
#include "IComponent.h"
#ifndef DECORATORBLACKBORDER_H
#define DECORATORBLACKBORDER_H
typedef struct DecoratorBlackBorder_Fld DecoratorBlackBorder_Fld;
typedef struct DecoratorBlackBorder DecoratorBlackBorder;
struct DecoratorBlackBorder
{
DecoratorBlackBorder_Fld *pFld;
//透明装饰器,
//继承接口时,不需要声明接口的公共方法
};
DecoratorBlackBorder *DecoratorBlackBorder_New(apr_pool_t *pSupPool, IComponent *pComponent);
IComponent *DecoratorBlackBorder2IComponent(DecoratorBlackBorder *pInst);
void DecoratorBlackBorder_Free(DecoratorBlackBorder **ppInst);
#endif // !DECORATORBLACKBORDER_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/bailingniao_760/DesignPatternInC.git
git@gitee.com:bailingniao_760/DesignPatternInC.git
bailingniao_760
DesignPatternInC
DesignPatternInC
master

搜索帮助