blob: bf2d1d93f631f5859b1c6b54b3bcc8c98e46c1a4 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2015-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16import { NgModule } from '@angular/core';
17import { CommonModule } from '@angular/common';
Sean Condon83fc39f2018-04-19 18:56:13 +010018
19import { GeoDataService } from './geodata.service';
20import { GlyphService } from './glyph.service';
21import { GlyphDataService } from './glyphdata.service';
22import { IconService } from './icon.service';
23import { MapService } from './map.service';
24import { SpriteService } from './sprite.service';
25import { SpriteDataService } from './spritedata.service';
26import { SvgUtilService } from './svgutil.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010027import { IconComponent } from './icon/icon.component';
28
29/**
30 * ONOS GUI -- Scalable Vector Graphics Module
31 */
32@NgModule({
33 exports: [
Sean Condon83fc39f2018-04-19 18:56:13 +010034 IconComponent
35 ],
36 imports: [
Sean Condona00bf382018-06-23 07:54:01 +010037 CommonModule
Sean Condon83fc39f2018-04-19 18:56:13 +010038 ],
39 declarations: [
Sean Condon83fc39f2018-04-19 18:56:13 +010040 IconComponent
41 ],
42 providers: [
43 GeoDataService,
44 GlyphService,
45 GlyphDataService,
46 IconService,
47 MapService,
48 SpriteService,
49 SpriteDataService,
50 SvgUtilService
51 ]
52})
53export class SvgModule { }