Logo AND Algorithmique Numérique Distribuée

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