Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __MARGINS_H__
00011 #define __MARGINS_H__
00012 namespace libmspub
00013 {
00014 struct Margins
00015 {
00016 Margins(unsigned left, unsigned top, unsigned right, unsigned bottom) :
00017 m_left(left), m_top(top), m_right(right), m_bottom(bottom) { }
00018 Margins() : m_left(0), m_top(0), m_right(0), m_bottom(0) { }
00019 unsigned m_left, m_top, m_right, m_bottom;
00020 };
00021 }
00022 #endif
00023