eflxx/elementaryxx/src/Button.cpp

26 lines
358 B
C++

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "elementaryxx/Button.h"
using namespace std;
namespace Elmxx {
Button::Button (Evasxx::Object &parent)
{
o = elm_button_add (parent.obj ());
elmInit ();
}
Button::~Button () {}
Button *Button::factory (Evasxx::Object &parent)
{
return new Button (parent);
}
} // end namespace Elmxx