c7d90ff1ab
- .vimrc added to reflect settings used in the project
9 lines
143 B
C++
9 lines
143 B
C++
#include "protocollist.h"
|
|
#include "abstractprotocol.h"
|
|
|
|
void ProtocolList::destroy()
|
|
{
|
|
while (!isEmpty())
|
|
delete takeFirst();
|
|
}
|