~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to formatters/lib/astyle_stringiterator.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of KDevelop
 
2
*  Copyright (C) 2008 Cédric Pasteur <cedric.pasteur@free.fr>
 
3
   Copyright (C) 2001 Matthias Hölzer-Klüpfel <mhk@caldera.de>
 
4
 
 
5
This program is free software; you can redistribute it and/or
 
6
modify it under the terms of the GNU General Public
 
7
License as published by the Free Software Foundation; either
 
8
version 2 of the License, or (at your option) any later version.
 
9
 
 
10
This program is distributed in the hope that it will be useful,
 
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with this program; see the file COPYING.  If not, write to
 
17
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
Boston, MA 02110-1301, USA.
 
19
 
 
20
*/
 
21
#include "astyle_stringiterator.h"
 
22
 
 
23
#include <string>
 
24
 
 
25
AStyleStringIterator::AStyleStringIterator(const QString &text)
 
26
  : ASSourceIterator(), m_content(text)
 
27
{
 
28
  m_is = new QTextStream(&m_content, QIODevice::ReadOnly);
 
29
}
 
30
 
 
31
 
 
32
AStyleStringIterator::~AStyleStringIterator()
 
33
{
 
34
  delete m_is;
 
35
}
 
36
 
 
37
 
 
38
bool AStyleStringIterator::hasMoreLines() const
 
39
{
 
40
  return !m_is->atEnd();
 
41
}
 
42
 
 
43
 
 
44
string AStyleStringIterator::nextLine()
 
45
{
 
46
  return m_is->readLine().toUtf8().data();
 
47
}
 
48
 
 
49
string AStyleStringIterator::peekNextLine()
 
50
{
 
51
    m_peekStart = m_is->pos();
 
52
    return m_is->readLine().toUtf8().data();
 
53
}
 
54
 
 
55
void AStyleStringIterator::peekReset()
 
56
{
 
57
    if(m_peekStart != -1)
 
58
        m_is->seek(m_peekStart);
 
59
    m_peekStart = -1; // invalid
 
60
}
 
61