GUIDOLib  1.7.7
Guido Engine Internal Documentation
ARJump.h
1 #ifndef __ARJump__
2 #define __ARJump__
3 
4 /*
5  GUIDO Library
6  Copyright (C) 2004 Grame
7 
8  This Source Code Form is subject to the terms of the Mozilla Public
9  License, v. 2.0. If a copy of the MPL was not distributed with this
10  file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 
12  Grame Research Laboratory, 11, cours de Verdun Gensoul 69002 Lyon - France
13  research@grame.fr
14 
15 */
16 
17 #include <string>
18 #include <iostream>
19 
20 #include "ARMTParameter.h"
21 #include "FormatStringParser.h"
22 
25 class ARJump : public ARMTParameter
26 {
27  public:
28  ARJump(std::string mark = "");
29  virtual ~ARJump() {}
30 
31  virtual const char* getParamsStr() const { return kARJumpParams; };
32  virtual const char* getTagName() const { return "ARJump"; };
33 
34  virtual void setTagParameters (const TagParameterMap& params);
35 
36  const FormatStringParserResult& getMark() const { return mMark; }
37 // int getID() const { return mID; }
38  const ARMusicalObject * isARJump() const { return this; }
39 
40  private:
41  FormatStringParserResult mMark;
42 // int mID; // the tag ID
43 };
44 
45 #endif
ARJump::~ARJump
virtual ~ARJump()
Definition: ARJump.h:29
ARMTParameter
not yet documented
Definition: ARMTParameter.h:24
ARJump::getTagName
virtual const char * getTagName() const
Definition: ARJump.h:32
ARJump::getParamsStr
virtual const char * getParamsStr() const
Definition: ARJump.h:31
ARJump::ARJump
ARJump(std::string mark="")
ARJump::getMark
const FormatStringParserResult & getMark() const
Definition: ARJump.h:36
ARJump::setTagParameters
virtual void setTagParameters(const TagParameterMap &params)
TagParameterMap
A list of tag parameters represented as a map.
Definition: TagParameterMap.h:31
ARMusicalObject
The base class for all AR objects. It contains all musical information : duration and time position.
Definition: ARMusicalObject.h:33
ARJump
common implementation for \coda, \segno, \toCoda etc...
Definition: ARJump.h:25
ARJump::isARJump
const ARMusicalObject * isARJump() const
Definition: ARJump.h:38

Guido Project Copyright © 2019 Grame-CNCM