2014-08-21 23:52:42 +02:00
|
|
|
/*
|
2014-07-08 16:54:54 +02:00
|
|
|
* Copyright (C) 2014 Oliver Hahm <oliver.hahm@inria.fr>
|
2014-08-21 23:52:42 +02:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2014-07-08 16:54:54 +02:00
|
|
|
/**
|
|
|
|
* @ingroup rpl
|
|
|
|
* @{
|
2015-05-22 07:34:41 +02:00
|
|
|
* @file
|
2014-07-08 16:54:54 +02:00
|
|
|
* @brief Objective Function Zero.
|
|
|
|
*
|
|
|
|
* Header-file, which defines all functions for the implementation of Objective Function Zero.
|
|
|
|
*
|
|
|
|
* @author Eric Engel <eric.engel@fu-berlin.de>
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2014-08-06 13:48:18 +02:00
|
|
|
#ifndef OF0_H
|
|
|
|
#define OF0_H
|
|
|
|
|
|
|
|
#include "rpl/rpl_structs.h"
|
|
|
|
#include "rpl/rpl_config.h"
|
2012-01-19 17:35:50 +01:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-06-10 17:36:56 +02:00
|
|
|
rpl_of_t *rpl_get_of0(void);
|
2014-08-06 13:48:18 +02:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-06 13:48:18 +02:00
|
|
|
#endif /* OF0_H */
|