mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +00:00
23 lines
609 B
C#
23 lines
609 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp
|
|
{
|
|
/// <summary>
|
|
/// A union of child nodes. This is the sum of all children (logical or).
|
|
/// </summary>
|
|
internal class Union : MultiStatementObject
|
|
{
|
|
/// <summary>
|
|
/// Create a union that is the combination of all children
|
|
/// </summary>
|
|
/// <param name="children">OSCADObjects to combine</param>
|
|
internal Union(IEnumerable<OSCADObject> children) : base("union()", children)
|
|
{
|
|
}
|
|
}
|
|
}
|