QXRD  0.11.16
Classes | Functions
qxrdcalibrantdspacing.h File Reference

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

#include "qcepmacros.h"
#include <QSettings>
#include <QScriptValue>
#include <QScriptEngine>
#include "qcepproperty.h"
Include dependency graph for qxrdcalibrantdspacing.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  QxrdCalibrantDSpacing
 

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: