Switch to side-by-side view

--- a/src/DAF/IRM/IRMListeners.cc
+++ b/src/DAF/IRM/IRMListeners.cc
@@ -14,13 +14,13 @@
 // 
 
 #include "IRM.h"
-#include "IRMListeners.h"
-
-IRMListeners::IRMListeners(IRM* nirm) {
-    this->irm = nirm;
-}
-
-IRMListeners::~IRMListeners() {
+#include "IRMListeners.h"
+
+IRMListeners::IRMListeners(IRM* nirm) {
+    this->irm = nirm;
+}
+
+IRMListeners::~IRMListeners() {
 
 }
 
@@ -41,20 +41,3 @@
     EV << "AllocationResponseNegative{fromFAI} initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
     this->irm->receiveAllocationResponseNegative(obj);
 }
-
-void LisIRMAllocReq::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationRequest initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    irm->receiveAllocationRequest(obj);
-}
-
-void LisIRMAllocResNegaAppNotFound::receiveSignal(cComponent* src,
-        simsignal_t id, cObject* obj) {
-    EV << "AllocationResponseNegative{AppNotFound} initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-}
-
-void LisIRMDeallocReq::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationRequest initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    irm->receiveDeallocationRequest(obj);
-}