40 lines
675 B
C++
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äbler
|
|
* @ingroup Moversight
|
|
*/
|
|
class PeerIDList : public List<PeerID>, public Serializable {
|
|
|
|
void set(Archive &archive) {
|
|
archive(queue);
|
|
}
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* PEERIDLIST_H */
|
|
|