mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
11 lines
No EOL
284 B
C++
11 lines
No EOL
284 B
C++
#pragma once
|
|
#include <switch.h>
|
|
#include "iserver.hpp"
|
|
|
|
template <typename T>
|
|
class ExistingPortServer : public IServer<T> {
|
|
public:
|
|
ExistingPortServer(Handle port_h, unsigned int max_s) : IServer<T>(NULL, max_s) {
|
|
this->port_handle = port_h;
|
|
}
|
|
}; |