GUIDOLib  1.7.7
Guido Engine Internal Documentation
ARAutoBeam.h
1 #ifndef ARAutoBeam_H
2 #define ARAutoBeam_H
3 
4 /*
5  GUIDO Library
6  Copyright (C) 2002 Holger Hoos, Juergen Kilian, Kai Renz
7  Copyright (C) 2002-2017 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 "ARBeam.h"
19 
22 class ARAutoBeam : public ARBeam
23 {
24  bool fFullBeaming; // introduced to cover rests in auto beaming
25 public:
26  ARAutoBeam(bool full=false)
27  {
29  isAuto = true;
30  fFullBeaming = full;
31  }
32 
33  virtual ~ARAutoBeam() {}
34 
35  virtual bool isFullBeaming() const { return fFullBeaming;}
36  virtual const char* getTagName () const { return "ARAutoBeam"; };
37  virtual std::string getGMNName () const { return "\\autoBeam"; };
38 };
39 
40 #endif
ARAutoBeam::getGMNName
virtual std::string getGMNName() const
Definition: ARAutoBeam.h:37
ARMusicalTag::isAuto
bool isAuto
Definition: ARMusicalTag.h:133
ARBeam
Abstract representation of a beam.
Definition: ARBeam.h:50
ARMusicalTag::RA
Definition: ARMusicalTag.h:43
ARAutoBeam::getTagName
virtual const char * getTagName() const
Definition: ARAutoBeam.h:36
ARAutoBeam::~ARAutoBeam
virtual ~ARAutoBeam()
Definition: ARAutoBeam.h:33
ARAutoBeam::ARAutoBeam
ARAutoBeam(bool full=false)
Definition: ARAutoBeam.h:26
ARAutoBeam
not yet documented
Definition: ARAutoBeam.h:22
ARMusicalTag::setAssociation
void setAssociation(ASSOCIATION p_assoc)
Definition: ARMusicalTag.h:71
ARAutoBeam::isFullBeaming
virtual bool isFullBeaming() const
Definition: ARAutoBeam.h:35

Guido Project Copyright © 2019 Grame-CNCM