/* row.h - an enhanced tuple for database rows1*2* Copyright (C) 2005-2010 Gerhard Häring <[email protected]>3*4* This file is part of pysqlite.5*6* This software is provided 'as-is', without any express or implied7* warranty. In no event will the authors be held liable for any damages8* arising from the use of this software.9*10* Permission is granted to anyone to use this software for any purpose,11* including commercial applications, and to alter it and redistribute it12* freely, subject to the following restrictions:13*14* 1. The origin of this software must not be misrepresented; you must not15* claim that you wrote the original software. If you use this software16* in a product, an acknowledgment in the product documentation would be17* appreciated but is not required.18* 2. Altered source versions must be plainly marked as such, and must not be19* misrepresented as being the original software.20* 3. This notice may not be removed or altered from any source distribution.21*/2223#ifndef PYSQLITE_ROW_H24#define PYSQLITE_ROW_H25#include "Python.h"2627typedef struct _Row28{29PyObject_HEAD30PyObject* data;31PyObject* description;32} pysqlite_Row;3334int pysqlite_row_setup_types(PyObject *module);3536#endif373839