summaryrefslogtreecommitdiffstats
path: root/akregator/src/mk4storage/metakit/src/store.inl
blob: 191ee7de7110a56506f3767fe4c151238b40f695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// store.inl --
// $Id$
// This is part of Metakit, the homepage is http://www.equi4.com/metakit/

/** @file
 * Inlined members of the storage management classes
 */

/////////////////////////////////////////////////////////////////////////////
// c4_Notifier

d4_inline c4_Notifier::c4_Notifier (c4_Sequence* origin_)
  : _origin (origin_), _chain (0), _next (0),
    _type (kNone), _index (0), _propId (0), _count (0), 
    _cursor (0), _bytes (0)
{
  d4_assert(_origin != 0);
}

/////////////////////////////////////////////////////////////////////////////