Add missing <functional> includes (#5459)

This commit is contained in:
Tyler Veness
2023-07-18 21:18:32 -07:00
committed by GitHub
parent 0b91ca6d5a
commit 1af224c21b
25 changed files with 35 additions and 0 deletions

View File

@@ -5,6 +5,8 @@
#ifndef CSCORE_CSCORE_CV_H_
#define CSCORE_CSCORE_CV_H_
#include <functional>
#include "cscore_c.h"
#ifdef CSCORE_CSCORE_RAW_CV_H_

View File

@@ -5,6 +5,7 @@
#ifndef CSCORE_CSCORE_OO_H_
#define CSCORE_CSCORE_OO_H_
#include <functional>
#include <initializer_list>
#include <span>
#include <string>

View File

@@ -5,6 +5,7 @@
#ifndef CSCORE_CSCORE_OO_INC_
#define CSCORE_CSCORE_OO_INC_
#include <functional>
#include <string>
#include <string_view>
#include <utility>

View File

@@ -5,6 +5,8 @@
#ifndef CSCORE_CSCORE_RAW_H_
#define CSCORE_CSCORE_RAW_H_
#include <functional>
#include "cscore_c.h"
#ifdef __cplusplus

View File

@@ -9,6 +9,8 @@
#error "Cannot include both cscore_cv.h and cscore_raw_cv.h in the same file"
#endif
#include <functional>
#include <opencv2/core/mat.hpp>
#include "cscore_raw.h"