view base/XmlExportable.h @ 39:e1a0cf2dcc79

* Fix a crash in PortAudio output for mono data * Don't construct a chromagram in TonalChangeDetect plugin ctor * Update layer show/hide/dormancy for multi-view-capable layers -- the dormancy concept doesn't really work with these constraints any more
author Chris Cannam
date Fri, 03 Mar 2006 17:52:21 +0000
parents 070e9e1e40ea
children 39ae3dee27b9
line wrap: on
line source
/* -*- c-basic-offset: 4 -*-  vi:set ts=8 sts=4 sw=4: */

/*
    A waveform viewer and audio annotation editor.
    Chris Cannam, Queen Mary University of London, 2005-2006
    
    This is experimental software.  Not for distribution.
*/

#ifndef _XML_EXPORTABLE_H_
#define _XML_EXPORTABLE_H_

#include <QString>
#include <QColor>

class XmlExportable
{
public:
    virtual ~XmlExportable() { }

    virtual QString toXmlString(QString indent = "",
				QString extraAttributes = "") const = 0;

    static QString encodeEntities(QString);

    static QString encodeColour(QColor);

    static int getObjectExportId(const void *); // not thread-safe
};

#endif