QXRD  0.11.16
Functions
qxrdcalibrantdspacing.cpp File Reference

(Commit a65ccc9... : jennings : 2016-03-15 14:00:18 -0500)

#include "qxrdcalibrantdspacing.h"
Include dependency graph for qxrdcalibrantdspacing.cpp:

Go to the source code of this file.

Functions

QDataStream & operator<< (QDataStream &stream, const QxrdCalibrantDSpacing &pt)
 
QDataStream & operator>> (QDataStream &stream, QxrdCalibrantDSpacing &pt)
 

Function Documentation

QDataStream& operator<< ( QDataStream &  stream,
const QxrdCalibrantDSpacing pt 
)

Definition at line 115 of file qxrdcalibrantdspacing.cpp.

References QxrdCalibrantDSpacing::d(), QxrdCalibrantDSpacing::h(), QxrdCalibrantDSpacing::index(), QxrdCalibrantDSpacing::k(), QxrdCalibrantDSpacing::l(), QxrdCalibrantDSpacing::n(), and QxrdCalibrantDSpacing::tth().

116 {
117  stream << pt.index() << pt.h() << pt.k() << pt.l() << pt.n() << pt.d() << pt.tth();
118 
119  return stream;
120 }

Here is the call graph for this function:

QDataStream& operator>> ( QDataStream &  stream,
QxrdCalibrantDSpacing pt 
)

Definition at line 122 of file qxrdcalibrantdspacing.cpp.

References QxrdCalibrantDSpacing::d(), QxrdCalibrantDSpacing::h(), QxrdCalibrantDSpacing::index(), QxrdCalibrantDSpacing::k(), QxrdCalibrantDSpacing::l(), QxrdCalibrantDSpacing::n(), and QxrdCalibrantDSpacing::tth().

123 {
124  stream >> pt.index() >> pt.h() >> pt.k() >> pt.l() >> pt.n() >> pt.d() >> pt.tth();
125 
126  return stream;
127 }

Here is the call graph for this function: