Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add functions for ns3
[simgrid.git] / src / surf / network_ns3_private.h
diff --git a/src/surf/network_ns3_private.h b/src/surf/network_ns3_private.h
new file mode 100644 (file)
index 0000000..8472102
--- /dev/null
@@ -0,0 +1,24 @@
+/* Copyright (c) 2007, 2008, 2009, 2010. 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 _SURF_NETWORK_NS3_PRIVATE_H
+#define _SURF_NETWORK_NS3_PRIVATE_H
+
+#include "surf_private.h"
+#include "xbt/dict.h"
+
+typedef struct ns3_link{
+       char * id;
+       char * lat;
+       char * bdw;
+}s_ns3_link_t, *ns3_link_t;
+
+typedef struct surf_ns3_link{
+       s_surf_resource_t generic_resource;
+       ns3_link_t data;
+}s_surf_ns3_link_t, *surf_ns3_link_t;
+
+#endif                          /* _SURF_NETWORK_NS3_PRIVATE_H */