in progress with integratign new shm in multi

This commit is contained in:
2018-06-12 12:14:55 +02:00
parent bab7d8e3fb
commit b294b3e8b1
7 changed files with 1471 additions and 945 deletions

View File

@ -0,0 +1,19 @@
#pragma once
/************************************************
* @file sls_detector_exceptions.h
* @short exceptions defined
***********************************************/
/**
*@short exceptions defined
*/
#include <iostream>
#include <exception>
using namespace std;
struct SharedMemoryException : public exception {
public:
SharedMemoryException() {}
string GetMessage() const { return "Shared Memory Failed";};
};//shmException;