comparison libinterp/octave-value/ov-classdef.h @ 21751:b571fc85953f

maint: Use two spaces after period to indicate sentence break.
author Rik <rik@octave.org>
date Thu, 19 May 2016 18:48:52 -0700
parents 1473547f50f5
children bac0d6f07a3e
comparison
equal deleted inserted replaced
21750:6720e5a220ba 21751:b571fc85953f
728 std::map<std::string,cdef_property> property_map; 728 std::map<std::string,cdef_property> property_map;
729 729
730 // The number of members in this class (methods, properties...) 730 // The number of members in this class (methods, properties...)
731 octave_idx_type member_count; 731 octave_idx_type member_count;
732 732
733 // TRUE if this class is a handle class. A class is a handle 733 // TRUE if this class is a handle class. A class is a handle
734 // class when the abstract "handle" class is one of its superclasses. 734 // class when the abstract "handle" class is one of its superclasses.
735 bool handle_class; 735 bool handle_class;
736 736
737 // The list of super-class constructors that are called implicitly by the 737 // The list of super-class constructors that are called implicitly by the
738 // the classdef engine when creating an object. These constructors are not 738 // the classdef engine when creating an object. These constructors are not
739 // called explicitly by the class constructor. 739 // called explicitly by the class constructor.
740 std::list<cdef_class> implicit_ctor_list; 740 std::list<cdef_class> implicit_ctor_list;
741 741
742 // The number of objects of this class. 742 // The number of objects of this class.
743 octave_refcount<octave_idx_type> object_count; 743 octave_refcount<octave_idx_type> object_count;