Ejemplo n.º 1
0
 public IfcFurnitureType(DatabaseIfc db, string name, IfcFurnitureTypeEnum type) : base(db, name)
 {
     mPredefinedType = type;
     if (mDatabase.mRelease < ReleaseVersion.IFC4 && string.IsNullOrEmpty(ElementType) && type != IfcFurnitureTypeEnum.NOTDEFINED)
     {
         ElementType = type.ToString();
     }
 }
Ejemplo n.º 2
0
 internal IfcFurnitureType(DatabaseIfc m, string name, IfcAssemblyPlaceEnum a, IfcFurnitureTypeEnum type)
     : base(m,name)
 {
     mAssemblyPlace = a;
     mPredefinedType = type;
     if (mDatabase.mRelease == ReleaseVersion.IFC2x3 && string.IsNullOrEmpty(ElementType) && type != IfcFurnitureTypeEnum.NOTDEFINED)
         ElementType = type.ToString();
 }
Ejemplo n.º 3
0
 internal IfcFurnitureType(DatabaseIfc db, IfcFurnitureType t)
     : base(db, t)
 {
     mAssemblyPlace = t.mAssemblyPlace; mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 4
0
 internal IfcFurniture(DatabaseIfc db, IfcFurniture f)
     : base(db, f)
 {
     mPredefinedType = f.mPredefinedType;
 }
Ejemplo n.º 5
0
 public IfcFurniture(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcFurnitureTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
Ejemplo n.º 6
0
		internal IfcFurniture(IfcFurniture f) : base(f) { mPredefinedType = f.mPredefinedType; }
Ejemplo n.º 7
0
 internal IfcFurnitureType(DatabaseIfc db, IfcFurnitureType t, DuplicateOptions options) : base(db, t, options)
 {
     mAssemblyPlace = t.mAssemblyPlace; mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 8
0
 internal IfcFurniture(DatabaseIfc db, IfcFurniture f, DuplicateOptions options) : base(db, f, options)
 {
     mPredefinedType = f.mPredefinedType;
 }
Ejemplo n.º 9
0
 public IfcFurnitureType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcAssemblyPlaceEnum assemblyPlace, IfcFurnitureTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     AssemblyPlace  = assemblyPlace;
     PredefinedType = predefinedType;
 }