Testing library separation: now not in launcher but isolated
[anna.git] / example / diameter / launcher / testing / TestClock.hpp
diff --git a/example/diameter/launcher/testing/TestClock.hpp b/example/diameter/launcher/testing/TestClock.hpp
deleted file mode 100644 (file)
index e007cb6..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// ANNA - Anna is Not Nothingness Anymore                                                         //
-//                                                                                                //
-// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
-//                                                                                                //
-// See project site at http://redmine.teslayout.com/projects/anna-suite                           //
-// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
-
-
-#ifndef example_diameter_launcher_TestClock_hpp
-#define example_diameter_launcher_TestClock_hpp
-
-// Project
-#include <anna/core/core.hpp>
-#include <anna/timex/Clock.hpp>
-
-class TestManager;
-
-class TestClock : public anna::timex::Clock {
-  TestManager *a_manager;
-
-public:
-  TestClock(const char *clockName, const anna::Millisecond & timeout, TestManager *manager)
-    : a_manager(manager), anna::timex::Clock(clockName, timeout) {;}
-
-  virtual bool tick() throw(anna::RuntimeException);
-};
-
-#endif
-