#ifndef _IPS_H
#define _IPS_H

#include "Vector.h"

class Interface
{
 public:
  Interface()
    {
      ifname=NULL;
      ip=NULL;
    }

  char *ifname;
  char *ip;
};


Vector<Interface*> *ips();

#endif
