xtd 0.2.0
source_filter.h
Go to the documentation of this file.
1 #pragma once
5 #include "trace_filter.h"
6 
8 namespace xtd {
10  namespace diagnostics {
28  class core_export_ source_filter : public xtd::diagnostics::trace_filter {
29  public:
31 
35  explicit source_filter(const xtd::ustring& source);
37 
39 
43  const xtd::ustring& source() const noexcept;
46  void source(const xtd::ustring& source) noexcept;
48 
50 
60  bool should_trace(const xtd::diagnostics::trace_event_cache& cache, const xtd::ustring& source, xtd::diagnostics::trace_event_type event_type, int32 id, const xtd::ustring& message, std::any data1, const std::vector<std::any>& data_array) noexcept override;
62 
63  private:
64  xtd::ustring source_;
65  };
66  }
67 }
Contains xtd::diagnostics::trace_filter class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Provides trace event data specific to a thread and a process.
Definition: trace_event_cache.h:28
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
Indicates that all styles except allow_binary_specifier, allow_octal_specifier and allow_hex_specifie...
int_least32_t int32
Represents a 32-bit signed integer.
Definition: types.h:129
Indicates whether a listener should trace a message based on the source of a trace.
Definition: source_filter.h:28
Provides the base class for trace filter implementations.
Definition: trace_filter.h:33
trace_event_type
Identifies the type of event that has caused the trace.
Definition: trace_event_type.h:23