view PyFeatureSet.h @ 72:ffaa1fb3d7de vampyhost

inline is not a useful keyword with contemporary compilers
author Chris Cannam
date Mon, 24 Nov 2014 09:50:49 +0000
parents 27bab3a16c9a
children f5c028376bf9
line wrap: on
line source
/*

 * Vampy : This plugin is a wrapper around the Vamp plugin API.
 * It allows for writing Vamp plugins in Python.

 * Centre for Digital Music, Queen Mary University of London.
 * Copyright (C) 2008-2009 Gyorgy Fazekas, QMUL. (See Vamp sources 
 * for licence information.)

*/

#ifndef _PYFEATURESET_H_
#define _PYFEATURESET_H_

#include <Python.h>

typedef struct {
    PyDictObject dict;
} FeatureSetObject;

PyAPI_DATA(PyTypeObject) FeatureSet_Type;

#define PyFeatureSet_CheckExact(v)	((v)->ob_type == &FeatureSet_Type)
#define PyFeatureSet_Check(v) PyObject_TypeCheck(v, &FeatureSet_Type)

void initFeatureSetType(void);

#endif