diff options
author | Sebastian Geerken <devnull@localhost> | 2015-01-30 20:30:40 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-01-30 20:30:40 +0100 |
commit | 3238f21d277704723582ebaf7f5c9d6e0b042bf9 (patch) | |
tree | ad9a63b3cbdd3333aaf060c4016e90b0a6a4bbe0 /dw/oofposabslikemgr.cc | |
parent | b1e34672ecbe28c18462cd1b02ba0b2cfc7f772b (diff) |
Relative positions, part 2: OOFPosAbsLikeMgr (initial version).
Diffstat (limited to 'dw/oofposabslikemgr.cc')
-rw-r--r-- | dw/oofposabslikemgr.cc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dw/oofposabslikemgr.cc b/dw/oofposabslikemgr.cc new file mode 100644 index 00000000..f73b34d2 --- /dev/null +++ b/dw/oofposabslikemgr.cc @@ -0,0 +1,39 @@ +/* + * Dillo Widget + * + * Copyright 2015 Sebastian Geerken <sgeerken@dillo.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "oofposabslikemgr.hh" + +namespace dw { + +namespace oof { + +OOFPosAbsLikeMgr::OOFPosAbsLikeMgr (OOFAwareWidget *container) : + OOFPositionedMgr (container) +{ + DBG_OBJ_CREATE ("dw::OOFPosAbsLikeMgr"); +} + +OOFPosAbsLikeMgr::~OOFPosAbsLikeMgr () +{ + DBG_OBJ_DELETE (); +} + +} // namespace oof + +} // namespace dw |