Files
allwpilib/cscore/src/main/native/cpp/RawSourceImpl.hpp

38 lines
948 B
C++
Raw Normal View History

// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
2025-11-07 19:57:55 -05:00
#ifndef CSCORE_RAWSOURCEIMPL_HPP_
#define CSCORE_RAWSOURCEIMPL_HPP_
#include <atomic>
#include <functional>
#include <memory>
#include <string>
#include <string_view>
#include <vector>
2025-11-07 19:56:21 -05:00
#include "ConfigurableSourceImpl.hpp"
#include "SourceImpl.hpp"
#include "wpi/cs/cscore_raw.h"
2025-11-07 20:00:05 -05:00
namespace wpi::cs {
class RawSourceImpl : public ConfigurableSourceImpl {
public:
2025-11-07 20:01:58 -05:00
RawSourceImpl(std::string_view name, wpi::util::Logger& logger,
Notifier& notifier, Telemetry& telemetry,
const VideoMode& mode);
~RawSourceImpl() override;
// Raw-specific functions
void PutFrame(const WPI_RawFrame& image);
private:
std::atomic_bool m_connected{true};
};
2025-11-07 20:00:05 -05:00
} // namespace wpi::cs
2025-11-07 19:57:55 -05:00
#endif // CSCORE_RAWSOURCEIMPL_HPP_