diff --git a/Appl/CEP/CS1/CS1_Storage/include/CS1_Storage/AHC_Storage.h b/Appl/CEP/CS1/CS1_Storage/include/CS1_Storage/AHC_Storage.h index 72edb932f8fcbc80d9f6851266ada6e498e3e86e..55b6acec791ada4ce0b0e904d687d9d53dfae44f 100644 --- a/Appl/CEP/CS1/CS1_Storage/include/CS1_Storage/AHC_Storage.h +++ b/Appl/CEP/CS1/CS1_Storage/include/CS1_Storage/AHC_Storage.h @@ -47,10 +47,11 @@ public: // Destructor ~AHC_Storage(); - +/* todo: check this code during SAS/MAC tests // Command to control the application processes. tribool pause (const string& condition) ; tribool quit (); +*/ protected: // Copying is not allowed diff --git a/Appl/CEP/CS1/CS1_Storage/src/AHC_Storage.cc b/Appl/CEP/CS1/CS1_Storage/src/AHC_Storage.cc index ee4b5df6c8b7e56593429639ba4e121fc86e78ee..b4ae20006924ffccaef2ad7c8df760a874d1cb51 100644 --- a/Appl/CEP/CS1/CS1_Storage/src/AHC_Storage.cc +++ b/Appl/CEP/CS1/CS1_Storage/src/AHC_Storage.cc @@ -54,6 +54,7 @@ AHC_Storage::AHC_Storage(TinyApplicationHolder& AH, int noRuns) AHC_Storage::~AHC_Storage() {}; +/* todo: check this code during SAS/MAC tests tribool AHC_Storage::pause (const string& ) { LOG_TRACE_FLOW("Pause called"); @@ -106,5 +107,7 @@ tribool AHC_Storage::quit () LOG_TRACE_FLOW("Quit ready"); return true; } + +*/ } }