Skip to content
Snippets Groups Projects
Verified Commit 6071c8ae authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

feat(dcc v2.2.0): remove stuff that was remove

parent 904e2748
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ import { Hash } from "./Hash";
export class MeasuringEquipment extends XMLElement {
// TODO: Add missing types
name: TextBlock;
equipmentClass?: any;
/*equipmentClass?: any;*/
description: TextBlock;
descriptionData?: ByteData;
certificate?: Hash;
......@@ -21,8 +21,8 @@ export class MeasuringEquipment extends XMLElement {
this.name = new TextBlock(options.name);
if (options.equipmentClass)
this.equipmentClass = options.equipmentClass;
/*if (options.equipmentClass)
this.equipmentClass = options.equipmentClass;*/
this.description = new TextBlock(options.description);
......
......@@ -4,7 +4,6 @@ import { UsedMethods } from "./UsedMethods";
import { UsedSoftware } from "./UsedSoftware";
import { InfluenceConditions } from "./InfluenceConditions";
import { MeasurementMetaData } from "./MeasurementMetaData";
import { ToleranceOneDim } from "./ToleranceOneDim";
export class Quantity extends XMLElement {
name?: TextBlock;
......@@ -17,10 +16,10 @@ export class Quantity extends XMLElement {
si_real?: any;
si_list?: any;
si_hybrid?: any;
/*toleranceOneDim?: ToleranceOneDim;*/
// end choice
toleranceOneDim?: ToleranceOneDim;
usedMethods?: UsedMethods;
usedSoftware?: UsedSoftware;
influenceConditions?: InfluenceConditions;
......@@ -42,12 +41,11 @@ export class Quantity extends XMLElement {
this.si_list = options.si_list;
else if (options.si_hybrid)
this.si_hybrid = options.si_hybrid;
/*else if (options.toleranceOneDim)
this.toleranceOneDim = new ToleranceOneDim(options.toleranceOneDim);*/
// end choice
if (options.toleranceOneDim)
this.toleranceOneDim = new ToleranceOneDim(options.toleranceOneDim);
if (options.usedMethods)
this.usedMethods = new UsedMethods(options.usedMethods);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment