mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
Fix weird comment formatting
This commit is contained in:
@@ -6,9 +6,7 @@
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
|
||||
/**
|
||||
* Represents a resolved DNS-SD service.
|
||||
*/
|
||||
/** Represents a resolved DNS-SD service. */
|
||||
struct DnsSdService {
|
||||
std::string name;
|
||||
std::string host;
|
||||
@@ -18,9 +16,7 @@ struct DnsSdService {
|
||||
std::map<std::string, std::string> txt_record;
|
||||
};
|
||||
|
||||
/**
|
||||
* Delegate interface for receiving DNS-SD browser events.
|
||||
*/
|
||||
/** Delegate interface for receiving DNS-SD browser events. */
|
||||
class DnsSdPlatformBrowserDelegate {
|
||||
public:
|
||||
virtual ~DnsSdPlatformBrowserDelegate() = default;
|
||||
@@ -30,8 +26,8 @@ public:
|
||||
|
||||
/**
|
||||
* Platform-specific DNS-SD browser.
|
||||
* Implemented in dns_sd_platform_browser_unix.cc (macOS/Linux) and
|
||||
* dns_sd_platform_browser_win.cc (Windows).
|
||||
* Implemented in dns_sd_platform_browser_unix.cc (macOS/Linux) and dns_sd_platform_browser_win.cc
|
||||
* (Windows).
|
||||
*/
|
||||
class DnsSdPlatformBrowser {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user