Displaying 1 result from an estimated 1 matches for "m_row".
Did you mean:
n_row
2007 Jan 25
0
[854] trunk/wxruby2/swig/classes: Add support for GridBagSizer
...;nbsp   2007-01-25 18:19:11 UTC (rev 854)
</span><span class="lines">@@ -0,0 +1,23 @@
</span><ins>+// Copyright 2004-2007 by Kevin Smith
+// released under the MIT-style wxruby2 license
+
+class wxGBPosition
+{
+public:
+ wxGBPosition() : m_row(0), m_col(0) {}
+ wxGBPosition(int row, int col) : m_row(row), m_col(col) {}
+
+ // default copy ctor and assignment operator are okay.
+
+ int GetRow() const { return m_row; }
+ int GetCol() const { return m_col; }
+ void SetRow(int row) { m_row = row; }
+ void SetCol(int col) {...