Page MenuHomePhorge

ChannelSlotOfTestbench.cpp
No OneTemporary

Size
570 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
Sat, Aug 29, 3:45 PM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
364702
Default Alt Text
ChannelSlotOfTestbench.cpp (570 B)

Event Timeline