Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill both SimDag and Jedule bindings. Cleanups will follow
[simgrid.git] / include / simgrid / jedule / jedule.hpp
diff --git a/include/simgrid/jedule/jedule.hpp b/include/simgrid/jedule/jedule.hpp
deleted file mode 100644 (file)
index 8d7fd7b..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-/* Copyright (c) 2010-2012, 2014-2016. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#ifndef JEDULE_HPP_
-#define JEDULE_HPP_
-#include <stdio.h>
-#include "simgrid_config.h"
-
-#include "jedule_events.hpp"
-#include "jedule_platform.hpp"
-
-#if HAVE_JEDULE
-
-XBT_ATTRIB_UNUSED static std::unordered_map <const char *, jed_container_t> host2_simgrid_parent_container;
-XBT_ATTRIB_UNUSED static std::unordered_map <std::string, jed_container_t> container_name2container;
-
-namespace simgrid {
-namespace jedule{
-
-
-XBT_PUBLIC_CLASS Jedule {
-public:
-  Jedule()=default;
-  ~Jedule();
-  std::vector<Event *> event_set;
-  Container* root_container = nullptr;
-  std::unordered_map<char*, char*> meta_info;
-  void addMetaInfo(char* key, char* value);
-  void cleanupOutput();
-  void writeOutput(FILE *file);
-};
-
-}
-}
-
-SG_BEGIN_DECL()
-
-typedef simgrid::jedule::Jedule *jedule_t;
-
-SG_END_DECL()
-#endif
-
-#endif /* JEDULE_HPP_ */