Initial setup for CLion
This commit is contained in:
17
engines/OpenVINOEngine/src/monitors/query_wrapper.h
Normal file
17
engines/OpenVINOEngine/src/monitors/query_wrapper.h
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright (C) 2019-2024 Intel Corporation
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Pdh.h>
|
||||
class QueryWrapper {
|
||||
public:
|
||||
QueryWrapper();
|
||||
~QueryWrapper();
|
||||
QueryWrapper(const QueryWrapper&) = delete;
|
||||
QueryWrapper& operator=(const QueryWrapper&) = delete;
|
||||
operator PDH_HQUERY() const;
|
||||
private:
|
||||
PDH_HQUERY query;
|
||||
};
|
||||
Reference in New Issue
Block a user