// two-qubit state and operations // #ifndef Q2_H_ #define Q2_H_ class Q2 { private: double a00, a01, a10, a11; public: Q2(); void print(const char msg[]) const; }; #endif // Q2_H_