LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
ServiceSection.m
1classdef ServiceSection < Section
2 % An abstract class for the service section of a node.
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties
8 numberOfServers;
9 serviceProcess;
10 end
11
12 methods(Hidden)
13 %Constructor
14 function self = ServiceSection(className)
15 % SELF = SERVICESECTION(CLASSNAME)
16
17 self@Section(className);
18 end
19 end
20end