GUIDOLib  1.7.7
Guido Engine Internal Documentation
ARFermata.h
1 #ifndef ARFermata_H
2 #define ARFermata_H
3 
4 /*
5  GUIDO Library
6  Copyright (C) 2002 Holger Hoos, Juergen Kilian, Kai Renz
7  Copyright (C) 2002 Grame
8 
9  This Source Code Form is subject to the terms of the Mozilla Public
10  License, v. 2.0. If a copy of the MPL was not distributed with this
11  file, You can obtain one at http://mozilla.org/MPL/2.0/.
12 
13  Grame Research Laboratory, 11, cours de Verdun Gensoul 69002 Lyon - France
14  research@grame.fr
15 
16 */
17 
18 #include "ARArticulation.h"
19 
20 /*@mkdoc
21 
22 @group:Articulations
23 
24 @tagname:\fermata
25 @tagalias:
26 @tagtype:RP
27 @tagnotation:fermata signs
28 @tagdesc
29 @tagend
30 
31 @params:
32 @param:type:string:short, regular or long:regular:true
33 @param:position:string:above or below:above:true
34 @paramdesc
35 See the [Articulations](@EXAMPLES/articulations/) example.
36 @paramend
37 
38 */
39 
40 /* \brief Class ARFermata : abstract representation of a fermata.
41 
42  A fermata is linked to an object (then event is set) or it is
43  between two objects and has no duration.
44 */
45 
46 class ARFermata : public ARArticulation
47 {
48  public:
50 
51  ARFermata();
52  virtual ~ARFermata() {}
53 
54  virtual void setTagParameters (const TagParameterMap& params);
55 
56  virtual const char* getParamsStr() const { return kARFermataParams; };
57  virtual const char* getTagName() const { return "ARFermata"; };
58  virtual std::string getGMNName() const { return "\\fermata"; };
59  virtual unsigned int getSymbol() const;
60 
61  TFermata getType() const { return fType; };
62 
63  protected:
65 };
66 
67 #endif
ARFermata
Definition: ARFermata.h:46
ARFermata::LONG
Definition: ARFermata.h:49
ARArticulation
not yet documented
Definition: ARArticulation.h:25
ARFermata::setTagParameters
virtual void setTagParameters(const TagParameterMap &params)
ARFermata::getGMNName
virtual std::string getGMNName() const
Definition: ARFermata.h:58
ARFermata::getParamsStr
virtual const char * getParamsStr() const
Definition: ARFermata.h:56
ARFermata::fType
TFermata fType
Definition: ARFermata.h:61
ARFermata::SHORT
Definition: ARFermata.h:49
ARFermata::getType
TFermata getType() const
Definition: ARFermata.h:61
ARFermata::~ARFermata
virtual ~ARFermata()
Definition: ARFermata.h:52
ARFermata::REGULAR
Definition: ARFermata.h:49
ARFermata::getSymbol
virtual unsigned int getSymbol() const
ARFermata::TFermata
TFermata
Definition: ARFermata.h:49
TagParameterMap
A list of tag parameters represented as a map.
Definition: TagParameterMap.h:31
ARFermata::getTagName
virtual const char * getTagName() const
Definition: ARFermata.h:57
ARFermata::ARFermata
ARFermata()

Guido Project Copyright © 2019 Grame-CNCM