Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I'll manage to organize that cruft. Ignore the cvs commits in the next few days
[simgrid.git] / src / gras / DataDesc / net_driver.h
diff --git a/src/gras/DataDesc/net_driver.h b/src/gras/DataDesc/net_driver.h
deleted file mode 100644 (file)
index 0a74bbd..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/* gs_net_driver.h */
-#ifndef GS_NET_DRIVER_H
-#define GS_NET_DRIVER_H
-
-/* used structs */
-struct s_gs_connection;
-struct s_gs_net_driver;
-
-struct s_gs_net_driver_ops {
-
-        void
-        (*_init)       (struct s_gs_net_driver *p_net_driver);
-
-        void
-        (*_exit)       (struct s_gs_net_driver *p_net_driver);
-};
-
-struct s_gs_net_driver {
-        struct s_gs_net_driver_ops     *net_ops;
-        struct s_gs_connection_ops     *connection_ops;
-        void                           *specific;
-};
-
-
-#endif /* GS_NET_DRIVER_H */