enum.h revision fd5e7b511a23f6228ce4cd3ef54795664811e615
/*
* Inkscape::LivePathEffectParameters
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "ui/widget/registry.h"
#include "ui/widget/registered-enums.h"
#include <gtkmm/tooltips.h>
#include "live_effects/parameter/parameter.h"
#include "verbs.h"
const Util::EnumDataConverter<E>& c,
{
enumdataconv = &c;
};
};
if (!strvalue) {
return true;
}
return true;
};
gchar * param_writeSVGValue() const {
return str;
};
E get_value() const {
return value;
}
void param_set_default() {
}
void param_set_value(E val) {
}
E value;
E defvalue;
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif