~s-cecilio/lomse/master

« back to all changes in this revision

Viewing changes to src/score/lomse_score_iterator.cpp

  • Committer: cecilios
  • Date: 2010-11-14 17:47:31 UTC
  • Revision ID: git-v1:1fa3764c8c4d338b95b1a537b1e78271170c0025
latest new code. demo_1 tested on linux and win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//--------------------------------------------------------------------------------------
 
1
//---------------------------------------------------------------------------------------
2
2
//  This file is part of the Lomse library.
3
3
//  Copyright (c) 2010 Lomse project
4
4
//
16
16
//  For any comment, suggestion or feature request, please contact the manager of
17
17
//  the project at cecilios@users.sourceforge.net
18
18
//
19
 
//-------------------------------------------------------------------------------------
 
19
//---------------------------------------------------------------------------------------
20
20
 
21
21
 
22
22
#include "lomse_score_iterator.h"
27
27
{
28
28
 
29
29
 
30
 
//-------------------------------------------------------------------------------------
 
30
//---------------------------------------------------------------------------------------
31
31
// ScoreIterator implementation
32
 
//-------------------------------------------------------------------------------------
33
 
 
 
32
//---------------------------------------------------------------------------------------
34
33
ScoreIterator::ScoreIterator(ColStaffObjs* pColStaffObjs)
35
34
    : m_pColStaffObjs(pColStaffObjs)
36
35
{
37
36
    first();
38
37
}
39
38
 
 
39
//---------------------------------------------------------------------------------------
40
40
ScoreIterator::~ScoreIterator()
41
41
{
42
42
}
43
43
 
 
44
//---------------------------------------------------------------------------------------
44
45
void ScoreIterator::first()
45
46
{
46
47
    m_it = m_pColStaffObjs->begin();