Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove bindings CXX from Simgrid
[simgrid.git] / examples / cxx / comm_time / CommTimeTask.hpp
diff --git a/examples/cxx/comm_time/CommTimeTask.hpp b/examples/cxx/comm_time/CommTimeTask.hpp
deleted file mode 100644 (file)
index 87a6eea..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef COMMTIME_TASK_HPP
-#define COMMTIME_TASK_HPP
-
-#include <MsgTask.hpp>
-using namespace SimGrid::Msg;
-
-class CommTimeTask : public Task
-{
-       MSG_DECLARE_DYNAMIC(CommTimeTask);
-
-public:
-
-       CommTimeTask()
-       :Task(NULL, 0.0, 0.0){}
-       
-       // Default constructor.
-       CommTimeTask(const char* name, double computeDuration, double messageSize)
-       throw (InvalidArgumentException, NullPointerException)
-       :Task(name, computeDuration, messageSize){}
-       
-       // Destructor
-       virtual ~CommTimeTask() 
-       throw(MsgException){}
-       
-       void setTime(double timeVal)
-       {
-               this->timeVal = timeVal;
-       }
-       
-       double getTime() 
-       {
-               return timeVal;
-       }
-       
-private :
-       
-       double timeVal;
-};
-
-#endif // !COMMTIME_TASK_HPP