kontainer.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#ifndef KONTAINER_H
00022
#define KONTAINER_H
00023
00024
#include <qstring.h>
00025
#include <qvaluelist.h>
00026
00027
class Kontainer
00028 {
00029
public:
00033
typedef QValueList<Kontainer> ValueList;
00034
00035
friend bool operator== (
const Kontainer &a ,
const Kontainer &b );
00036 Kontainer(
const QString& = QString::null,
00037
const QString& = QString::null );
00038 Kontainer(
const Kontainer & );
00039
00040 ~Kontainer();
00041
00042
QString first()const;
00043
QString second()const;
00044 Kontainer &operator=( const Kontainer& );
00045
00046 private:
00047 class KontainerPrivate;
00048 KontainerPrivate *d;
00049
QString m_first;
00050
QString m_second;
00051 };
00052
00053 #endif
This file is part of the documentation for kitchensync Library Version 3.3.0.