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