📄 collectionsenderc.nc
字号:
/** * The virtualized collection sender abstraction. * * @author Kyle Jamieson * @author Philip Levis * @date April 25 2006 * @see TinyOS Net2-WG */#include "Collection.h"#include "TreeCollection.h"generic configuration CollectionSenderC(collection_id_t collectid) { provides { interface Send; interface Packet; }}implementation { components new CollectionSenderP(collectid, unique(UQ_COLLECTION_CLIENT)); Send = CollectionSenderP; Packet = CollectionSenderP;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -