parent
d5f6c8d7a7
commit
29f0ffe498
@ -1,5 +1,5 @@ |
|||||||
import { Injectable } from '@angular/core'; |
import { Injectable } from '@angular/core'; |
||||||
import {XeokitServer} from "core-app/modules/ifc_models/xeokit/xeokit-server"; |
import {XeokitServer} from "core-app/modules/bim/ifc_models/xeokit/xeokit-server"; |
||||||
|
|
||||||
export interface XeokitElements { |
export interface XeokitElements { |
||||||
canvasElement:HTMLElement; |
canvasElement:HTMLElement; |
@ -1,5 +1,5 @@ |
|||||||
import {Injectable} from "@angular/core"; |
import {Injectable} from "@angular/core"; |
||||||
import {OpenprojectIFCModelsModule} from "core-app/modules/ifc_models/openproject-ifc-models.module"; |
import {OpenprojectIFCModelsModule} from "core-app/modules/bim/ifc_models/openproject-ifc-models.module"; |
||||||
import {PathHelperService} from "core-app/modules/common/path-helper/path-helper.service"; |
import {PathHelperService} from "core-app/modules/common/path-helper/path-helper.service"; |
||||||
import {GonService} from "core-app/modules/common/gon/gon.service"; |
import {GonService} from "core-app/modules/common/gon/gon.service"; |
||||||
import {CurrentProjectService} from "core-components/projects/current-project.service"; |
import {CurrentProjectService} from "core-components/projects/current-project.service"; |
@ -0,0 +1,51 @@ |
|||||||
|
// -- copyright
|
||||||
|
// OpenProject is an open source project management software.
|
||||||
|
// Copyright (C) 2012-2020 the OpenProject GmbH
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU General Public License version 3.
|
||||||
|
//
|
||||||
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||||||
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
||||||
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU General Public License
|
||||||
|
// as published by the Free Software Foundation; either version 2
|
||||||
|
// of the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
//
|
||||||
|
// See docs/COPYRIGHT.rdoc for more details.
|
||||||
|
// ++
|
||||||
|
|
||||||
|
import {APP_INITIALIZER, NgModule} from '@angular/core'; |
||||||
|
import {OpenprojectCommonModule} from "core-app/modules/common/openproject-common.module"; |
||||||
|
import {BcfWpSingleViewComponent} from "core-app/modules/bim/bcf/bcf-wp-single-view/bcf-wp-single-view.component"; |
||||||
|
import {NgxGalleryModule} from "ngx-gallery"; |
||||||
|
import {DisplayFieldService} from "core-app/modules/fields/display/display-field.service"; |
||||||
|
import {initializeBcfDisplayFields} from "core-app/modules/bim/bcf/fields/display/bcf-display-field.initializer"; |
||||||
|
import {BcfImportButtonComponent} from "core-app/modules/bim/bcf/bcf-buttons/bcf-import-button.component"; |
||||||
|
import {BcfDetectorService} from "core-app/modules/bim/bcf/helper/bcf-detector.service"; |
||||||
|
import {BcfPathHelperService} from "core-app/modules/bim/bcf/helper/bcf-path-helper.service"; |
||||||
|
import {BcfExportButtonComponent} from "core-app/modules/bim/bcf/bcf-buttons/bcf-export-button.component"; |
||||||
|
import {OpenprojectBcfModule} from "core-app/modules/bim/bcf/openproject-bcf.module"; |
||||||
|
import {OpenprojectIFCModelsModule} from "core-app/modules/bim/ifc_models/openproject-ifc-models.module"; |
||||||
|
|
||||||
|
|
||||||
|
@NgModule({ |
||||||
|
imports: [ |
||||||
|
OpenprojectBcfModule, |
||||||
|
OpenprojectIFCModelsModule, |
||||||
|
] |
||||||
|
}) |
||||||
|
export class OpenprojectBimModule { |
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue