-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedgeadapter.cpp
45 lines (38 loc) · 1.19 KB
/
edgeadapter.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* --------------------------------------------- */
/* */
/* Copyright (C) 2021 Wolfgang Trummer */
/* Contact: [email protected] */
/* */
/* gvtree V1.9-0 */
/* */
/* git version tree browser */
/* */
/* 28. December 2021 */
/* */
/* This program is licensed under */
/* GNU GENERAL PUBLIC LICENSE */
/* Version 3, 29 June 2007 */
/* */
/* --------------------------------------------- */
#include "edgeadapter.h"
EdgeAdapter::EdgeAdapter(Edge* _e, QWidget* _parent):
QWidget(_parent),
e(_e)
{
}
void EdgeAdapter::compareVersions()
{
e->compareVersions();
}
void EdgeAdapter::focusSource()
{
e->focusSource();
}
void EdgeAdapter::focusDestination()
{
e->focusDestination();
}
void EdgeAdapter::focusNeighbourBox()
{
e->focusNeighbourBox();
}