Hi Greg,
Greg McKeever <organgtool at gmail.com> writes:
> BaseTransferObject.h:24:34: error: unable to find suitable accessor
> function 'getPrimaryKey'
>
> long getPrimaryKey();
An accessor must be const:
long getPrimaryKey() const;
Boris