I have solved the previus problems in my code, thanks to all of you. (Specially 
to Cliff and Eddie).

But now I have a new problem:

I have in VlanTables.hh one structure like this:

typedef HashMap<int,int> PORT_VLAN;

struct PortInfo{
bool active;
bool trunk;
PORT_VLAN vlans;
}

Vector<PortInfo> ports;

And in the VlanTables.cc, in the configure function:

Vector<PortInfo>::iterator it=ports.begin();

for(int iter=0; iter<8; iter++){
ports.insert(it,PortInfo);
it++;
}

All the compilation run ok, except the final part, where I have this error:

Undefined reference to Vector<VlanTables::PortInfo>::~Vector()

Someone knows why I have this error?

Thanks, David.
_______________________________________________
click mailing list
[email protected]
https://amsterdam.lcs.mit.edu/mailman/listinfo/click

Reply via email to