33 lines
476 B
C++
33 lines
476 B
C++
// -*- C++ -*-
|
|
/*
|
|
* File: Platform.h
|
|
* Author: jgaebler
|
|
*
|
|
* Created on September 7, 2010, 3:03 PM
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef PLATFORM_H
|
|
#define PLATFORM_H
|
|
|
|
//check for ubeeme core settings
|
|
#ifdef UBEEME
|
|
//platform settings done in ubeeme/common/ubeeme_global.h
|
|
#define OMNETPP 0
|
|
|
|
#else
|
|
|
|
/**
|
|
* @brief Defines if the current platform is omnetpp or not
|
|
*/
|
|
#define OMNETPP 1
|
|
|
|
/**
|
|
* @breif Disables the ubeeme platform
|
|
*/
|
|
#define UBEEME 0
|
|
|
|
#endif
|
|
|
|
#endif /* PLATFORM_H */
|