12 lines
179 B
C++
12 lines
179 B
C++
#pragma once
|
|
|
|
#include "BeastServer.hpp"
|
|
#include "PiPedalModel.hpp"
|
|
|
|
|
|
namespace pipedal {
|
|
|
|
std::shared_ptr<ISocketFactory> MakePiPedalSocketFactory(PiPedalModel &model);
|
|
};
|
|
|