Source: ksirk/pointsarray.h
|
|
|
|
/***************************************************************************
tableaupoints.h - description
-------------------
begin : Wed Jul 18 2001
copyright : (C) 2001 by Gaël de Chalendar
email : Gael.de.Chalendar@libertysurf.fr
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#define KDE_NO_COMPAT
#ifndef POINTSARRAY_H
#define POINTSARRAY_H
#include
#include
/**
* An array of points (simply a shortcut to QPtrList)
* TODO : make that all inline
*/
class PointsArray : public QPtrList
{
// Q_OBJECT
public:
PointsArray();
~PointsArray();
};
#endif // POINTSARRAY_H
Generated by: gael on noirdes.limsi.u-psud.fr on Thu Sep 5 22:51:46 2002, using kdoc 2.0a53. |