head	1.6;
access;
symbols
	PyQwt3D-0-1-6:1.5
	PyQwt3D-0-1-5:1.5
	start:1.1.1.1
	gvermeul:1.1.1;
locks; strict;
comment	@# @;


1.6
date	2008.11.02.08.57.02;	author gvermeul;	state Exp;
branches;
next	1.5;

1.5
date	2006.09.23.09.46.39;	author gvermeul;	state Exp;
branches;
next	1.4;

1.4
date	2006.09.16.08.10.34;	author gvermeul;	state Exp;
branches;
next	1.3;

1.3
date	2006.02.18.07.18.50;	author gvermeul;	state Exp;
branches;
next	1.2;

1.2
date	2005.01.23.05.58.07;	author gvermeul;	state Exp;
branches;
next	1.1;

1.1
date	2004.11.14.06.58.39;	author gvermeul;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2004.11.14.06.58.39;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.6
log
@Make PyQwt3D compile with the snapshots leading to SIP-4.8 by replacing
size_type with size_t.
Update copyright dates.
@
text
@ // DO NOT EDIT: this file is automagically generated by FILL.
//
// The SIP interface definition for %(VECTOR)s.
//
// Copyright (C) 2004-2006 Gerard Vermeulen
//
// This file is part of PyQwt3D.
//
// PyQwt3D 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.
//
// PyQwt3D 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with PyQwt3D; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//
// In addition, as a special exception, Gerard Vermeulen gives permission
// to link PyQwt3D dynamically with non-free versions of Qt and PyQt,
// and to distribute PyQwt3D in this form, provided that equally powerful
// versions of Qt and PyQt have been released under the terms of the GNU
// General Public License.
//
// If PyQwt3D is dynamically linked with non-free versions of Qt and PyQt,
// PyQwt3D becomes a free plug-in for a non-free program.


class %(VECTOR)s
{

%%TypeHeaderCode%(HEAD)s
%%End // %%TypeHeaderCode

public:
    %(VECTOR)s();
    %(VECTOR)s(size_t);
    %(VECTOR)s(size_t, %(ITEM)s);
    %(VECTOR)s(const %(VECTOR)s &);

    size_t capacity() const;
    void clear();
    bool empty() const;
    %(ITEM)s back();
    %(ITEM)s front();
    size_t max_size() const;
    void pop_back();
    void push_back(%(ITEM)s);
    void reserve(size_t);
    void resize(size_t, %(ITEM)s & = 0);
    size_t size() const;
    void swap(%(VECTOR)s &);

    %(ITEM)s __getitem__(int);
%%MethodCode
    int len = sipCpp -> size();
    
    if (0 > (a0 = sipConvertFromSequenceIndex(a0, len)))
        sipIsErr = 1;
    else
        sipRes = (*sipCpp)[a0];
%%End

    int __len__() const;
%%MethodCode
    sipRes = sipCpp -> size();
%%End

    void __setitem__(int, %(ITEM)s);
%%MethodCode
    int len = sipCpp -> size();

    if (0 > (a0 = sipConvertFromSequenceIndex(a0, len)))
        sipIsErr = 1;
    else
        (*sipCpp)[a0] = a1;
%%End

    void __setitem__(SIP_PYSLICE, const %(VECTOR)s &);
%%MethodCode
    int len = sipCpp -> size();
    Py_ssize_t start, stop, step, slicelength;

    if (0 > sipConvertFromSliceObject(a0, len,
                                      &start, &stop, &step, &slicelength))
        sipIsErr = 1;
    else {
        int vlen = a1 -> size();

        if (vlen != slicelength) {
            sipBadLengthForSlice(vlen, slicelength);
            sipIsErr = 1;
        } else {
            %(VECTOR)s::const_iterator it = a1 -> begin();

            for (int i = 0; i < slicelength; ++i) {
                (*sipCpp)[start] = *it;
                start += step;
                ++it;
            }
        }
    }
%%End

}; // class %(VECTOR)s


// Local Variables:
// mode: C++
// c-file-style: "stroustrup"
// indent-tabs-mode: nil
// End:
@


1.5
log
@Make PyQwt3D compile with Python-2.5 on Gentoo x86-64.
@
text
@d1 1
a1 1
// DO NOT EDIT: this file is automagically generated by FILL.
d41 2
a42 2
    %(VECTOR)s(size_type);
    %(VECTOR)s(size_type, %(ITEM)s);
d45 1
a45 1
    size_type capacity() const;
d50 1
a50 1
    size_type max_size() const;
d53 3
a55 3
    void reserve(size_type);
    void resize(size_type, %(ITEM)s & = 0);
    size_type size() const;
@


1.4
log
@Give permission to link PyQwt3D dynamically with non-free versions of
Qt and PyQt as long as Qt and PyQt are also released under the GPL.
@
text
@d86 1
a86 1
    int start, stop, step, slicelength;
@


1.3
log
@Remove support for old SIP versions.
Change license to plain GPL.
@
text
@d22 9
@


1.2
log
@Update copyright dates.
@
text
@d5 1
a5 1
// Copyright (C) 2004-2005 Gerard Vermeulen
d9 9
a17 11
// -- LICENSE --
//
// PyQwt3D 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.
//
// PyQwt3D 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 General Public License for more
// details.
d21 1
a21 13
// 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
//
// In addition, as a special exception, Gerard Vermeulen gives permission to
// link PyQwt3D dynamically with commercial, non-commercial or educational
// versions of Qt, PyQt and sip, and distribute PyQwt in this form, provided
// that equally powerful versions of Qt, PyQt and sip have been released under
// the terms of the GNU General Public License.
//
// If PyQwt3D is dynamically linked with commercial, non-commercial or
// educational versions of Qt, PyQt and sip, PyQwt3D becomes a free plug-in for
// a non-free program.
//
// -- LICENSE --
@


1.1
log
@Initial revision
@
text
@d5 1
a5 1
// Copyright (C) 2004 Gerard Vermeulen
@


1.1.1.1
log
@Initial import.
@
text
@@
