#ifndef ID_H
#define ID_H

#include <QMetaType>

#include "field.h"

class Id : public Field
{
public:
    Id( const BaseAdaptor * const db = 0 );
};
Q_DECLARE_METATYPE(Id)
#endif // ID_H

