Test
This commit is contained in:
@@ -12,3 +12,12 @@ WorkspaceInstance::WorkspaceInstance(void)
|
||||
WorkspaceInstance::~WorkspaceInstance(void)
|
||||
{
|
||||
}
|
||||
|
||||
void WorkspaceInstance::removeFromPVector(PVInstance * instance)
|
||||
{
|
||||
__pvVector.erase(std::remove(__pvVector.begin(), __pvVector.end(), instance), __pvVector.end());
|
||||
}
|
||||
void WorkspaceInstance::addToPVector(PVInstance * instance)
|
||||
{
|
||||
__pvVector.push_back(instance);
|
||||
}
|
||||
Reference in New Issue
Block a user