forked from rism-digital/verovio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.cpp
34 lines (26 loc) · 773 Bytes
/
dot.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
/////////////////////////////////////////////////////////////////////////////
// Name: dot.cpp
// Author: Laurent Pugin
// Created: 2014
// Copyright (c) Authors and others. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#include "dot.h"
//----------------------------------------------------------------------------
namespace vrv {
//----------------------------------------------------------------------------
// Dot
//----------------------------------------------------------------------------
Dot::Dot():
LayerElement("dot-"), PositionInterface()
{
Reset();
}
Dot::~Dot()
{
}
void Dot::Reset()
{
LayerElement::Reset();
PositionInterface::Reset();
}
} // namespace vrv