#ifndef H_PHOTON_PATH_WRITER
#define H_PHOTON_PATH_WRITER

#include "JMarkov/JPhotonPath.hh"
#include "JIO/JBinaryFileWriter.hh"

/**
 * \author mjongen
 */

namespace JMARKOV {}
namespace JPP { using namespace JMARKOV; }

namespace JMARKOV {

  class JPhotonPathWriter : public JIO::JBinaryFileWriter<JPhotonPath> {
   public :

    using JIO::JWriterObjectOutput<JPhotonPath>::put ;
  } ;

}

#endif