blob: 9688c30bfabd9934b1d54137e116073eec05dc5d [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';
18import { UtilModule } from '../util/util.module';
19
20import { GeoDataService } from './geodata.service';
21import { GlyphService } from './glyph.service';
22import { GlyphDataService } from './glyphdata.service';
23import { IconService } from './icon.service';
24import { MapService } from './map.service';
25import { SpriteService } from './sprite.service';
26import { SpriteDataService } from './spritedata.service';
27import { SvgUtilService } from './svgutil.service';
28import { IconDirective } from './icon.directive';
29import { IconComponent } from './icon/icon.component';
30
31/**
32 * ONOS GUI -- Scalable Vector Graphics Module
33 */
34@NgModule({
35 exports: [
36 IconDirective,
37 IconComponent
38 ],
39 imports: [
40 CommonModule,
41 UtilModule
42 ],
43 declarations: [
44 IconDirective,
45 IconComponent
46 ],
47 providers: [
48 GeoDataService,
49 GlyphService,
50 GlyphDataService,
51 IconService,
52 MapService,
53 SpriteService,
54 SpriteDataService,
55 SvgUtilService
56 ]
57})
58export class SvgModule { }