From 990bb6316ef7e68aa58a33fbdda0c465faab5e92 Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Mon, 27 Dec 2010 11:33:53 +0100 Subject: [PATCH] make ref. counting public --- pvDataApp/pv/pvIntrospect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvDataApp/pv/pvIntrospect.h b/pvDataApp/pv/pvIntrospect.h index a4812f4..1efd0b7 100644 --- a/pvDataApp/pv/pvIntrospect.h +++ b/pvDataApp/pv/pvIntrospect.h @@ -66,13 +66,13 @@ public: Type getType() const; virtual void toString(StringBuilder buf) const{toString(buf,0);} virtual void toString(StringBuilder buf,int indentLevel) const; + void incReferenceCount() const; + void decReferenceCount() const; protected: Field(String fieldName,Type type); virtual ~Field(); private: class FieldPvt *pImpl; - void incReferenceCount() const; - void decReferenceCount() const; friend class StructureArray; friend class Structure; friend class PVFieldPvt;