QDMI v1.1.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
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
74// NOLINTEND(modernize-use-using)
75
76#ifdef __cplusplus
77} // extern "C"
78#endif
struct QDMI_Site_impl_d * QDMI_Site
A handle for a site.
Definition types.h:53
struct QDMI_Operation_impl_d * QDMI_Operation
A handle for an operation.
Definition types.h:72