~zorba-coders/zorba/QT_driver_fixes

« back to all changes in this revision

Viewing changes to src/store/api/item.h

  • Committer: sorin.marian.nasoi
  • Date: 2013-08-06 16:39:51 UTC
  • mfrom: (11547.2.36 lp_zorba)
  • Revision ID: spungi@gmail.com-20130806163951-ad2k2v2914sbqr3f
-merged lp:zorba trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
  low-order bit is used to distinguish between these 2 cases: a 0 bit indicates
58
58
  an XmlTree pointer, and a 1 bit indicated an ItemKind. 
59
59
********************************************************************************/
60
 
class ZORBA_DLL_PUBLIC Item
 
60
class Item
61
61
{
62
62
public:
63
63
  enum ItemKind
103
103
 
104
104
  virtual void free();
105
105
 
106
 
  long getRefCount() const { return theRefCount; }
 
106
  long getRefCount() const;
107
107
 
108
108
  long* getSharedRefCounter() const { return theUnion.treeRCPtr; }
109
109