SCRIPT namespace replacements

This commit is contained in:
PJ Reiniger
2025-11-07 20:00:05 -05:00
committed by Peter Johnson
parent ae6c043632
commit 9aca8e0fd6
2622 changed files with 22275 additions and 22275 deletions

View File

@@ -16,11 +16,11 @@
#include "SourceImpl.hpp"
#include "wpi/cs/cscore_raw.h"
namespace cs {
namespace wpi::cs {
class RawSourceImpl : public ConfigurableSourceImpl {
public:
RawSourceImpl(std::string_view name, wpi::Logger& logger, Notifier& notifier,
RawSourceImpl(std::string_view name, wpi::util::Logger& logger, Notifier& notifier,
Telemetry& telemetry, const VideoMode& mode);
~RawSourceImpl() override;
@@ -31,6 +31,6 @@ class RawSourceImpl : public ConfigurableSourceImpl {
std::atomic_bool m_connected{true};
};
} // namespace cs
} // namespace wpi::cs
#endif // CSCORE_RAWSOURCEIMPL_HPP_