QDMI v1.2.0
Quantum Device Management Interface
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1/*------------------------------------------------------------------------------
2Copyright 2024 Munich Quantum Software Stack Project
3
4Licensed under the Apache License, Version 2.0 with LLVM Exceptions (the
5"License"); you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8https://github.com/Munich-Quantum-Software-Stack/QDMI/blob/develop/LICENSE
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13License for the specific language governing permissions and limitations under
14the License.
15
16SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
17------------------------------------------------------------------------------*/
18
23
24#pragma once
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30// The following clang-tidy warning cannot be addressed because this header is
31// used from both C and C++ code.
32// NOLINTBEGIN(modernize-use-using)
33
53typedef struct QDMI_Site_impl_d *QDMI_Site;
54
72typedef struct QDMI_Operation_impl_d *QDMI_Operation;
73
82typedef struct QDMI_Pulse_Parameter_impl_d *QDMI_Pulse_Parameter;
83
91typedef struct QDMI_Pulse_Waveform_impl_d *QDMI_Pulse_Waveform;
92
101typedef struct QDMI_Pulse_Implementation_impl_d *QDMI_Pulse_Implementation;
102// NOLINTEND(modernize-use-using)
103
104#ifdef __cplusplus
105} // extern "C"
106#endif
struct QDMI_Pulse_Parameter_impl_d * QDMI_Pulse_Parameter
A handle for a pulse parameter.
Definition types.h:82
struct QDMI_Pulse_Implementation_impl_d * QDMI_Pulse_Implementation
A handle for a pulse implementation.
Definition types.h:101
struct QDMI_Site_impl_d * QDMI_Site
A handle for a site.
Definition types.h:53
struct QDMI_Pulse_Waveform_impl_d * QDMI_Pulse_Waveform
A handle for a pulse waveform.
Definition types.h:91
struct QDMI_Operation_impl_d * QDMI_Operation
A handle for an operation.
Definition types.h:72