1classdef Section < NetworkElement
2 % An abstract
class for sections that define the behavior of a Node
4 % Copyright (c) 2012-2026, Imperial College London
13 function self = Section(className)
14 % SELF = SECTION(CLASSNAME)
16 self@NetworkElement(
'Section');
17 self.className = className;
22 function summary(self)
25 % line_printf(
'\n%s',
class(self));