We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a938519 commit 4d6d180Copy full SHA for 4d6d180
1 file changed
src/circuit/quantumcircuit_impl.hpp
@@ -28,6 +28,7 @@
28
#include <cassert>
29
30
#include "controlflow/__init__.hpp"
31
+#include "circuit/qasm3_exporter.hpp"
32
33
namespace Qiskit {
34
namespace circuit {
@@ -60,4 +61,9 @@ inline void QuantumCircuit::add_pending_control_flow_op(void)
60
61
}
62
63
64
+inline std::string QuantumCircuit::to_qasm3(void)
65
+{
66
+ return to_qasm3(*this);
67
+}
68
+
69
#endif // __qiskitcpp_circuit_quantum_circuit_impl_hpp__
0 commit comments