--- /dev/null
+#include <xbt/log.h>
+
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(loba);
+
+#include "loba_besteffort.h"
+
+void loba_besteffort::load_balance()
+{
+ // write code here...
+ xbt_die("Load-balancing algorithm besteffort not implemented!");
+}
+
+// Local variables:
+// mode: c++
+// End:
--- /dev/null
+#ifndef LOBA_BESTEFFORT_H
+#define LOBA_BESTEFFORT_H
+
+#include "process.h"
+
+class loba_besteffort: public process {
+public:
+ loba_besteffort(int argc, char* argv[]): process(argc, argv) { }
+ ~loba_besteffort() { }
+
+private:
+ void load_balance();
+};
+
+#endif //!LOBA_BESTEFFORT_H
+
+// Local variables:
+// mode: c++
+// End: