2009-02-08 16:35:56 +01:00
|
|
|
/**
|
|
|
|
* This file is part of the KDE project
|
|
|
|
* Copyright (C) 2008 Kevin Ottens <ervin@kde.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public License
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
#ifndef QTJOLIE_VALUE_H
|
|
|
|
#define QTJOLIE_VALUE_H
|
2009-02-08 16:35:56 +01:00
|
|
|
|
|
|
|
#include <QtCore/QIODevice>
|
|
|
|
#include <QtCore/QList>
|
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
namespace Jolie
|
|
|
|
{
|
|
|
|
class ValuePrivate;
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
class Q_DECL_EXPORT Value
|
2009-02-08 16:35:56 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-04-25 15:50:35 +02:00
|
|
|
Value();
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-05-30 10:44:34 +02:00
|
|
|
explicit Value(const QByteArray &content);
|
2009-04-25 15:50:35 +02:00
|
|
|
explicit Value(qint32 content);
|
|
|
|
explicit Value(double content);
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
Value(const Value &other);
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
~Value();
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
Value &operator=(const Value &other);
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-05-30 10:44:34 +02:00
|
|
|
QList<QByteArray> childrenNames() const;
|
|
|
|
QList<Value> &children(const QByteArray &name);
|
|
|
|
const QList<Value> &children(const QByteArray &name) const;
|
2009-02-08 16:35:56 +01:00
|
|
|
|
2009-05-30 10:44:34 +02:00
|
|
|
QByteArray toByteArray() const;
|
2009-02-08 16:35:56 +01:00
|
|
|
qint32 toInt() const;
|
|
|
|
double toDouble() const;
|
|
|
|
|
2009-05-30 10:44:34 +02:00
|
|
|
bool isByteArray() const;
|
2009-02-08 16:35:56 +01:00
|
|
|
bool isInt() const;
|
|
|
|
bool isDouble() const;
|
|
|
|
|
|
|
|
bool isValid() const;
|
|
|
|
|
|
|
|
private:
|
2009-04-25 15:50:35 +02:00
|
|
|
ValuePrivate * const d;
|
2009-02-08 16:35:56 +01:00
|
|
|
};
|
|
|
|
|
2009-04-25 15:50:35 +02:00
|
|
|
} // namespace Jolie
|
|
|
|
|
2009-02-08 16:35:56 +01:00
|
|
|
#endif
|
2009-04-25 15:50:35 +02:00
|
|
|
|