mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
SCRIPT namespace replacements
This commit is contained in:
committed by
Peter Johnson
parent
ae6c043632
commit
9aca8e0fd6
@@ -8,11 +8,11 @@
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
|
||||
namespace wpi {
|
||||
namespace wpi::util {
|
||||
class raw_istream;
|
||||
} // namespace wpi
|
||||
|
||||
namespace cs {
|
||||
namespace wpi::cs {
|
||||
|
||||
bool IsJpeg(std::string_view data);
|
||||
|
||||
@@ -22,8 +22,8 @@ bool JpegNeedsDHT(const char* data, size_t* size, size_t* locSOF);
|
||||
|
||||
std::string_view JpegGetDHT();
|
||||
|
||||
bool ReadJpeg(wpi::raw_istream& is, std::string& buf, int* width, int* height);
|
||||
bool ReadJpeg(wpi::util::raw_istream& is, std::string& buf, int* width, int* height);
|
||||
|
||||
} // namespace cs
|
||||
} // namespace wpi::cs
|
||||
|
||||
#endif // CSCORE_JPEGUTIL_HPP_
|
||||
|
||||
Reference in New Issue
Block a user