Page MenuHomePhorge

ChannelSlotOfTestbench.cpp
No OneTemporary

Size
576 B
Referenced Files
None
Subscribers
None

ChannelSlotOfTestbench.cpp

#include "ChannelSlotOfTestbench.h"
#include <stdio.h>
void ChannelSlotOfTestbench::init_channelSlotOfTestbench() { channel = NULL; }
ChannelSlotOfTestbench::ChannelSlotOfTestbench() {
init_channelSlotOfTestbench();
}
bool ChannelSlotOfTestbench::set_channel(Channel *channel) {
if (channel != NULL) {
this->channel = channel;
return true;
}
return false;
}
bool ChannelSlotOfTestbench::del_channel() {
if (channel != NULL) {
channel = NULL;
return true;
}
return false;
}
Channel *ChannelSlotOfTestbench::get_channel() { return channel; }

File Metadata

Mime Type
text/x-c
Expires
Sun, Mar 1, 9:35 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
283216
Default Alt Text
ChannelSlotOfTestbench.cpp (576 B)

Event Timeline