blob: 208cafe23ce6b8d76107386356aa03d8c261fa19 [file] [log] [blame]
Sean Condonf4f54a12018-10-10 23:25:46 +01001/*
2 * Copyright 2018-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 { Component, OnInit } from '@angular/core';
17import {
18 LogService,
19 LoadingService,
20 FnService,
21 PanelBaseImpl
22} from 'gui2-fw-lib';
23
24/*
25 ONOS GUI -- Topology Toolbar Module.
26 Defines modeling of ONOS toolbar.
27 */
28@Component({
29 selector: 'onos-toolbar',
30 templateUrl: './toolbar.component.html',
31 styleUrls: [
32 './toolbar.component.css', './toolbar.theme.css',
33 '../../topology.common.css',
34 '../../../../fw/widget/panel.css', '../../../../fw/widget/panel-theme.css'
35 ]
36})
37export class ToolbarComponent extends PanelBaseImpl implements OnInit {
38
39 constructor(
40 protected fs: FnService,
41 protected log: LogService,
42 protected ls: LoadingService,
43 ) {
44 super(fs, ls, log);
45 this.log.debug('ToolbarComponent constructed');
46 }
47
48 ngOnInit() {
49 }
50
51}