//********************************************************************* //* C_Base64 - a simple base64 encoder and decoder. //* //* Copyright (c) 1999, Bob Withers - [email protected] //* //* This code may be freely used for any purpose, either personal //* or commercial, provided the authors copyright notice remains //* intact. //********************************************************************* #ifndef RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ #define RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ #include <cstddef> #include <cstdint> #include <string> #include <vector> #include "absl/strings/string_view.h" #include "rtc_base/system/rtc_export.h" namespace rtc { class Base64 { … }; } // namespace rtc #endif /* RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ */