mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 16:46:47 +00:00
add test dir to examples/MQ/GenericDevices + change policy typedef in generic device from private to protected
This commit is contained in:
parent
1467360f75
commit
76626b4f4b
|
@ -41,6 +41,7 @@
|
||||||
template <typename T, typename U>
|
template <typename T, typename U>
|
||||||
class GenericFileSink : public FairMQDevice, public T, public U
|
class GenericFileSink : public FairMQDevice, public T, public U
|
||||||
{
|
{
|
||||||
|
protected:
|
||||||
typedef T deserialization_type;
|
typedef T deserialization_type;
|
||||||
typedef U sink_type;
|
typedef U sink_type;
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
template <typename T, typename U, typename V>
|
template <typename T, typename U, typename V>
|
||||||
class GenericProcessor : public FairMQDevice, public T, public U, public V
|
class GenericProcessor : public FairMQDevice, public T, public U, public V
|
||||||
{
|
{
|
||||||
|
protected:
|
||||||
typedef T deserialization_type;
|
typedef T deserialization_type;
|
||||||
typedef U serialization_type;
|
typedef U serialization_type;
|
||||||
typedef V proc_task_type;
|
typedef V proc_task_type;
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
template <typename T, typename U, typename K, typename L>
|
template <typename T, typename U, typename K, typename L>
|
||||||
class base_GenericSampler : public FairMQDevice, public T, public U
|
class base_GenericSampler : public FairMQDevice, public T, public U
|
||||||
{
|
{
|
||||||
|
protected:
|
||||||
typedef T source_type;
|
typedef T source_type;
|
||||||
typedef U serialization_type;
|
typedef U serialization_type;
|
||||||
typedef K key_type;
|
typedef K key_type;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user