blob: d249a1c6a97bf6c376e22a95010968b25ad5f990 [file] [log] [blame]
Austin Schuh75263e32022-02-22 18:05:32 -08001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#include "MulticastHandleManager.h"
6
7using namespace wpi;
8
9MulticastHandleManager& wpi::GetMulticastManager() {
10 static MulticastHandleManager manager;
11 return manager;
12}