Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove bindings CXX from Simgrid
[simgrid.git] / examples / cxx / explicitDestination / Forwarder.hpp
diff --git a/examples/cxx/explicitDestination/Forwarder.hpp b/examples/cxx/explicitDestination/Forwarder.hpp
deleted file mode 100644 (file)
index b09b821..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef FORWARDER_HPP
-#define FORWARDER_HPP
-
-#include <MsgProcess.hpp>
-using namespace SimGrid::Msg;
-
-class Forwarder : public Process
-{
-       MSG_DECLARE_DYNAMIC(Forwarder);
-
-       public:
-       
-       // Default constructor.
-       Forwarder(){}
-       
-       // Destructor.
-       virtual ~Forwarder(){}
-       
-       int main(int argc, char** argv);
-               
-};
-
-
-#endif // !FORWARDER_HPP