LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
LogTunnel.m
1classdef LogTunnel < ServiceTunnel
2 % A service tunnel for Logger nodes
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 methods
8 %Constructor
9 function self = LogTunnel()
10 % SELF = LOGTUNNEL()
11
12 self@ServiceTunnel('LogTunnel');
13 self.numberOfServers = 1;
14 self.serviceProcess = {};
15 end
16 end
17
18end
19
Definition mmt.m:92