Page MenuHomePhorge

AgentSlotOfTestbench.cpp
No OneTemporary

Size
556 B
Referenced Files
None
Subscribers
None

AgentSlotOfTestbench.cpp

#include "AgentSlotOfTestbench.h"
#include <stdio.h>
void AgentSlotOfTestbench :: init_agentSlotOfTestbench() {
agent = NULL;
}
AgentSlotOfTestbench :: AgentSlotOfTestbench() {
init_agentSlotOfTestbench();
}
bool AgentSlotOfTestbench :: set_agent(Agent* agent) {
if(agent != NULL) {
this->agent = agent;
return true;
}
return false;
}
bool AgentSlotOfTestbench :: del_agent() {
if(agent != NULL) {
agent = NULL;
return true;
}
return false;
}
Agent* AgentSlotOfTestbench :: get_agent() {
return agent;
}

File Metadata

Mime Type
text/x-c
Expires
Sun, Jul 12, 6:03 PM (19 h, 15 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
345117
Default Alt Text
AgentSlotOfTestbench.cpp (556 B)

Event Timeline