plugin  0.1.0
query_wrapper.h
1 // Copyright (C) 2019-2024 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #pragma once
6 
7 #include <Pdh.h>
8 class QueryWrapper {
9 public:
10  QueryWrapper();
11  ~QueryWrapper();
12  QueryWrapper(const QueryWrapper&) = delete;
13  QueryWrapper& operator=(const QueryWrapper&) = delete;
14  operator PDH_HQUERY() const;
15 private:
16  PDH_HQUERY query;
17 };
Definition: query_wrapper.h:8