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

« back to all changes in this revision

Viewing changes to languages/ruby/debugger/rdbparser.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
    begin                : Tue Aug 17 1999
 
3
    copyright            : (C) 1999 by John Birch
 
4
    email                : jbb@kdevelop.org
 
5
        
 
6
                          Adapted for ruby debugging
 
7
                          --------------------------
 
8
    begin                : Mon Nov 1 2004
 
9
    copyright            : (C) 2004 by Richard Dale
 
10
    email                : Richard_Dale@tipitina.demon.co.uk
 
11
 ***************************************************************************/
 
12
 
 
13
/***************************************************************************
 
14
 *                                                                         *
 
15
 *   This program is free software; you can redistribute it and/or modify  *
 
16
 *   it under the terms of the GNU General Public License as published by  *
 
17
 *   the Free Software Foundation; either version 2 of the License, or     *
 
18
 *   (at your option) any later version.                                   *
 
19
 *                                                                         *
 
20
 ***************************************************************************/
 
21
 
 
22
#ifndef _RDBPARSER_H_
 
23
#define _RDBPARSER_H_
 
24
 
 
25
#include "variablewidget.h"
 
26
 
 
27
namespace RDBDebugger
 
28
{
 
29
 
 
30
namespace RDBParser
 
31
{
 
32
    void parseVariables(LazyFetchItem *parent, char *buf);
 
33
    void parseExpandedVariable(VarItem *parent, char *buf);
 
34
    DataType determineType(char *buf);
 
35
    void setItem(       LazyFetchItem *parent, const QString &varName, 
 
36
                                        DataType dataType, const QCString &value );
 
37
}
 
38
 
 
39
}
 
40
 
 
41
#endif