QDMI v1.0.0b2
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#pragma once
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29// The following disables the clang-tidy warning modernize-use-using.
30// Since this is C code, we cannot use the using keyword.
31// NOLINTBEGIN(modernize-use-using)
32
41typedef struct QDMI_Job_impl_d *QDMI_Job;
42
55typedef struct QDMI_Site_impl_d *QDMI_Site;
56
65typedef struct QDMI_Operation_impl_d *QDMI_Operation;
66
67// NOLINTEND(modernize-use-using)
68
69#ifdef __cplusplus
70} // extern "C"
71#endif
struct QDMI_Site_impl_d * QDMI_Site
Opaque type for a site.
Definition types.h:55
struct QDMI_Job_impl_d * QDMI_Job
Opaque type for a job.
Definition types.h:41
struct QDMI_Operation_impl_d * QDMI_Operation
Opaque type for an operation.
Definition types.h:65