We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afaac0a commit c8f82a4Copy full SHA for c8f82a4
IntelPresentMon/PresentMonMiddleware/source/FrameEventQuery.h
@@ -40,6 +40,12 @@ struct PM_FRAME_QUERY
40
void GatherToBlob(const Context& ctx, uint8_t* pDestBlob) const;
41
size_t GetBlobSize() const;
42
std::optional<uint32_t> GetReferencedDevice() const;
43
+
44
+ PM_FRAME_QUERY(const PM_FRAME_QUERY&) = delete;
45
+ PM_FRAME_QUERY& operator=(const PM_FRAME_QUERY&) = delete;
46
+ PM_FRAME_QUERY(PM_FRAME_QUERY&&) = delete;
47
+ PM_FRAME_QUERY& operator=(PM_FRAME_QUERY&&) = delete;
48
49
private:
50
// functions
51
std::unique_ptr<pmon::mid::GatherCommand_> MapQueryElementToGatherCommand_(const PM_QUERY_ELEMENT& q, size_t pos);
0 commit comments