xlistnode.cpp
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #include "xlistnode.h"
15 
16 XListNodeBase::XListNodeBase(const char *name, bool runtime) :
17  XNode(name, runtime) {
18 }
19 
20 void
21 XListNodeBase::Payload::catchEvent(const shared_ptr<XNode>& var, int idx) {
22  CatchEvent e;
23  e.emitter = static_cast<XListNodeBase*>(&node());
24  e.caught = var;
25  e.index = idx;
26  tr().mark(onCatch(), std::move(e));
27 }
28 void
29 XListNodeBase::Payload::releaseEvent(const shared_ptr<XNode>& var, int idx) {
30  ReleaseEvent e;
31  e.emitter = static_cast<XListNodeBase*>(&node());
32  e.released = var;
33  e.index = idx;
34  tr().mark(onRelease(), std::move(e));
35 }
36 void
37 XListNodeBase::Payload::moveEvent(unsigned int src_idx, unsigned int dst_idx) {
38  MoveEvent e;
39  e.emitter = static_cast<XListNodeBase*>(&node());
40  e.src_idx = src_idx;
41  e.dst_idx = dst_idx;
42  tr().mark(onMove(), std::move(e));
43 }
44 void
45 XListNodeBase::Payload::listChangeEvent() {
46  tr().mark(onListChanged(), static_cast<XListNodeBase*>(&node()));
47 }

Generated for KAME4 by  doxygen 1.8.3