mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
110 lines
3.9 KiB
C++
110 lines
3.9 KiB
C++
|
|
#ifndef HEADER_SECTION_SCHEMA_H
|
|
#define HEADER_SECTION_SCHEMA_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <optional>
|
|
|
|
#include "../ifcparse/ifc_parse_api.h"
|
|
|
|
#include "../ifcparse/express.h"
|
|
#include "../ifcparse/IfcSchema.h"
|
|
#include "../ifcparse/IfcException.h"
|
|
#include "../ifcparse/Argument.h"
|
|
|
|
namespace IfcParse {
|
|
class IfcFile;
|
|
class IfcSpfHeader;
|
|
} // namespace IfcParse
|
|
|
|
struct Header_section_schema {
|
|
|
|
IFC_PARSE_API static const IfcParse::schema_definition& get_schema();
|
|
|
|
IFC_PARSE_API static void clear_schema();
|
|
|
|
static const char* const Identifier;
|
|
|
|
// Forward definitions
|
|
class file_description; class file_name; class file_schema; class schema_name; class time_stamp_text;
|
|
|
|
|
|
class IFC_PARSE_API schema_name : public express::DeclaredType {
|
|
public:
|
|
schema_name() {}
|
|
explicit schema_name (const std::weak_ptr<InstanceData>& data) : express::DeclaredType(data) {}
|
|
|
|
// virtual const IfcParse::type_declaration& declaration() const;
|
|
static const IfcParse::type_declaration& Class();
|
|
// schema_name (std::string v);
|
|
operator std::string() const;
|
|
};
|
|
|
|
class IFC_PARSE_API time_stamp_text : public express::DeclaredType {
|
|
public:
|
|
time_stamp_text() {}
|
|
explicit time_stamp_text (const std::weak_ptr<InstanceData>& data) : express::DeclaredType(data) {}
|
|
|
|
// virtual const IfcParse::type_declaration& declaration() const;
|
|
static const IfcParse::type_declaration& Class();
|
|
// time_stamp_text (std::string v);
|
|
operator std::string() const;
|
|
};
|
|
|
|
|
|
|
|
class IFC_PARSE_API file_description : public express::Entity {
|
|
public:
|
|
file_description() {}
|
|
explicit file_description (const std::weak_ptr<InstanceData>& data) : express::Entity(data) {}
|
|
|
|
std::vector< std::string > /*[1:?]*/ description() const;
|
|
void setdescription(const std::vector< std::string > /*[1:?]*/& v);
|
|
std::string implementation_level() const;
|
|
void setimplementation_level(const std::string& v);
|
|
// virtual const IfcParse::entity& declaration() const;
|
|
static const IfcParse::entity& Class();
|
|
// file_description (std::vector< std::string > /*[1:?]*/ v1_description, std::string v2_implementation_level);
|
|
};
|
|
|
|
class IFC_PARSE_API file_name : public express::Entity {
|
|
public:
|
|
file_name() {}
|
|
explicit file_name (const std::weak_ptr<InstanceData>& data) : express::Entity(data) {}
|
|
|
|
std::string name() const;
|
|
void setname(const std::string& v);
|
|
std::string time_stamp() const;
|
|
void settime_stamp(const std::string& v);
|
|
std::vector< std::string > /*[1:?]*/ author() const;
|
|
void setauthor(const std::vector< std::string > /*[1:?]*/& v);
|
|
std::vector< std::string > /*[1:?]*/ organization() const;
|
|
void setorganization(const std::vector< std::string > /*[1:?]*/& v);
|
|
std::string preprocessor_version() const;
|
|
void setpreprocessor_version(const std::string& v);
|
|
std::string originating_system() const;
|
|
void setoriginating_system(const std::string& v);
|
|
std::string authorization() const;
|
|
void setauthorization(const std::string& v);
|
|
// virtual const IfcParse::entity& declaration() const;
|
|
static const IfcParse::entity& Class();
|
|
// file_name (std::string v1_name, std::string v2_time_stamp, std::vector< std::string > /*[1:?]*/ v3_author, std::vector< std::string > /*[1:?]*/ v4_organization, std::string v5_preprocessor_version, std::string v6_originating_system, std::string v7_authorization);
|
|
};
|
|
|
|
class IFC_PARSE_API file_schema : public express::Entity {
|
|
public:
|
|
file_schema() {}
|
|
explicit file_schema (const std::weak_ptr<InstanceData>& data) : express::Entity(data) {}
|
|
|
|
std::vector< std::string > /*[1:?]*/ schema_identifiers() const;
|
|
void setschema_identifiers(const std::vector< std::string > /*[1:?]*/& v);
|
|
// virtual const IfcParse::entity& declaration() const;
|
|
static const IfcParse::entity& Class();
|
|
// file_schema (std::vector< std::string > /*[1:?]*/ v1_schema_identifiers);
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|