39 lines
693 B
C++
39 lines
693 B
C++
/*
|
|
* File: OmnetppIniUtils.h
|
|
* Author: jgaebler
|
|
*
|
|
* Created on February 15, 2012, 11:47 AM
|
|
*/
|
|
|
|
#ifndef OMNETPPINIUTILS_H
|
|
#define OMNETPPINIUTILS_H
|
|
|
|
#include "Moversight.h"
|
|
#include "common/transport/TransportAddressList.h"
|
|
|
|
/**
|
|
* @class OmnetppIniUtils
|
|
* @author Jan Gäbler
|
|
* @ingroup Moversight
|
|
* @brief The class provides utility functions to access the Omnetpp ini-file.
|
|
*/
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
class OmnetppIniUtils {
|
|
public:
|
|
|
|
static TransportAddressList getDestinationAddressesFromOmnetppIni(Moversight & module, const char *delimiters=NULL);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endif /* OMNETPPINIUTILS_H */
|
|
|