stuff-from-scratch/plugins/quantum_computing/src/BlochSphere.cpp

12 lines
156 B
C++
Raw Normal View History

#include "BlochSphere.h"
BlochSphere::BlochSphere(const Qubit& state)
: mState(state)
{
}
const Qubit& BlochSphere::getState() const
{
return mState;
}