openEmbroider  0.1
an open source embroidery software
 All Classes Functions Variables
OE_group.h
1 /*
2  * Copyright (c) 2015 Tricoire Sebastien 3dsman@free.fr
3  *
4  * This software is provided 'as-is', without any express or implied
5  * warranty. In no event will the authors be held liable for any damages
6  * arising from the use of this software.
7  *
8  * Permission is granted to anyone to use this software for any purpose,
9  * including commercial applications, and to alter it and redistribute it
10  * freely, subject to the following restrictions:
11  *
12  * 1. The origin of this software must not be misrepresented; you must not
13  * claim that you wrote the original software. If you use this software
14  * in a product, an acknowledgment in the product documentation would be
15  * appreciated but is not required.
16  * 2. Altered source versions must be plainly marked as such, and must not be
17  * misrepresented as being the original software.
18  * 3. This notice may not be removed or altered from any source distribution.
19  *
20  */
21 
22 #ifndef OE_GROUP_H
23 #define OE_GROUP_H
24 
25 #include "OE_svg_base.h"
26 #include "xml/tinyxml.h"
27 
28 class OE_group : public OE_svg_base
29 {
30  public:
32  OE_group();
34  virtual ~OE_group();
35 
36  virtual bool draw(float dpi);
37  virtual bool Parse(TiXmlElement *input);
38 
39  protected:
40  private:
41 };
42 
43 #endif // OE_GROUP_H
OE_group()
Definition: OE_group.cpp:26
virtual bool draw(float dpi)
draw the element on screen
Definition: OE_group.cpp:40
virtual ~OE_group()
Definition: OE_group.cpp:31
Definition: OE_svg_base.h:27
virtual bool Parse(TiXmlElement *input)
parse the xml file to load params
Definition: OE_group.cpp:35
Definition: OE_group.h:28