123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef API_RTC_EVENT_LOG_OUTPUT_H_
- #define API_RTC_EVENT_LOG_OUTPUT_H_
- #include <string>
- namespace webrtc {
- class RtcEventLogOutput {
- public:
- virtual ~RtcEventLogOutput() = default;
-
-
-
-
- virtual bool IsActive() const = 0;
-
-
-
-
-
- virtual bool Write(const std::string& output) = 0;
-
- virtual void Flush() {}
- };
- }
- #endif
|