LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
ClassSwitcher.m
1classdef ClassSwitcher < ServiceSection
2 % An abstract classs for a service section that switches job class
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties
8 csFun;
10 end
11
12 methods
13 %Constructor
14 function self = ClassSwitcher(classes, name)
15 % SELF = CLASSSWITCHER(CLASSES, NAME)
16
17 self@ServiceSection(name);
18 self.classes = classes;
19 self.numberOfServers = 1;
20 self.serviceProcess = {};
21 end
22 end
23
24end