Files
2014-06-30 13:58:10 +02:00

40 lines
675 B
C++

// -*- C++ -*-
/*
* File: PeerIDList.h
* Author: jgaebler
*
* Created on August 23, 2010, 5:03 PM
*/
#pragma once
#ifndef PEERIDLIST_H
#define PEERIDLIST_H
#include "common/Defines.h"
#include "common/container/List.h"
#include <serializable.h>
namespace ubeeme {
namespace moversight {
/**
* @brief Provides a list of peer IDs
* @class PeerIDList
* @author Jan G&auml;bler
* @ingroup Moversight
*/
class PeerIDList : public List<PeerID>, public Serializable {
void set(Archive &archive) {
archive(queue);
}
};
}
}
#endif /* PEERIDLIST_H */