Jpp  17.2.0
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Protected Member Functions | List of all members
JSUPPORT::JDAQWriterObjectOutput< T, true > Class Template Reference

Implementation of object output for DAQ compatible data types. More...

#include <JDAQFileWriter.hh>

Inheritance diagram for JSUPPORT::JDAQWriterObjectOutput< T, true >:
JIO::JWriterObjectOutput< T > JLANG::JObjectOutput< T >

Public Member Functions

virtual bool put (const T &object) override
 Object output. More...
 

Protected Member Functions

 JDAQWriterObjectOutput (JWriter &writer)
 Constructor. More...
 

Detailed Description

template<class T>
class JSUPPORT::JDAQWriterObjectOutput< T, true >

Implementation of object output for DAQ compatible data types.

This class implements the JLANG::JObjectOutput interface.

Definition at line 51 of file JDAQFileWriter.hh.

Constructor & Destructor Documentation

template<class T >
JSUPPORT::JDAQWriterObjectOutput< T, true >::JDAQWriterObjectOutput ( JWriter writer)
inlineprotected

Constructor.

Parameters
writerJWriter output

Definition at line 60 of file JDAQFileWriter.hh.

60  :
62  {}
Implementation of object output using JIO::JWriter for single data type.

Member Function Documentation

template<class T>
virtual bool JIO::JWriterObjectOutput< T >::put ( const T object)
inlineoverridevirtualinherited

Object output.

Parameters
objectobject
Returns
true if OK; else false

Implements JLANG::JObjectOutput< T >.

Definition at line 50 of file JWriterObjectOutput.hh.

51  {
52  out << object;
53 
54  return (bool) out;
55  }

The documentation for this class was generated from the following file: