classdef PetscObject < handle
%
%   Base class of all PETSc classes
%
% Developer Notes: Contains a single propertie which is a pointer to the C PETSc object
%
  properties
    pobj;
  end
end