diff libinterp/octave-value/cdef-package.h @ 26774:568c2ab2782d

move classdef classes inside octave namespace * cdef-class.cc, cdef-class.h, cdef-manager.cc, cdef-manager.h, cdef-method.cc, cdef-method.h, cdef-object.cc, cdef-object.h, cdef-package.cc, cdef-package.h, cdef-property.cc, cdef-property.h, cdef-utils.cc, cdef-utils.h: Move classes inside octave namespace. * interpreter-private.h, ls-mat5.cc, ov-classdef.cc, ov-classdef.h, Array-tc.cc: Adapt to changed scoping.
author John W. Eaton <jwe@octave.org>
date Fri, 22 Feb 2019 16:02:09 +0000
parents a95887edd55e
children b442ec6dda5c
line wrap: on
line diff
--- a/libinterp/octave-value/cdef-package.h	Fri Feb 22 15:40:15 2019 +0000
+++ b/libinterp/octave-value/cdef-package.h	Fri Feb 22 16:02:09 2019 +0000
@@ -37,187 +37,187 @@
 namespace octave
 {
   class interpreter;
-}
-
-class
-cdef_package : public cdef_meta_object
-{
-  friend class cdef_class;
-
-private:
 
   class
-  cdef_package_rep : public cdef_meta_object_rep
+  cdef_package : public cdef_meta_object
   {
-  public:
-
-    cdef_package_rep (void) : cdef_meta_object_rep (), member_count (0) { }
-
-    cdef_package_rep& operator = (const cdef_package_rep&) = delete;
-
-    ~cdef_package_rep (void) = default;
-
-    cdef_object_rep * copy (void) const { return new cdef_package_rep (*this); }
-
-    bool is_package (void) const { return true; }
-
-    std::string get_name (void) const { return get("Name").string_value (); }
-
-    void set_name (const std::string& nm) { put ("Name", nm); }
-
-    void install_class (const cdef_class& cls, const std::string& nm);
-
-    void install_function (const octave_value& fcn, const std::string& nm);
-
-    void install_package (const cdef_package& pack, const std::string& nm);
-
-    Cell get_classes (void) const;
-
-    Cell get_functions (void) const;
-
-    Cell get_packages (void) const;
-
-    octave_idx_type static_count (void) const { return member_count; }
-
-    void destroy (void)
-    {
-      if (member_count)
-        {
-          refcount++;
-          cdef_package lock (this);
-
-          member_count = 0;
-          class_map.clear ();
-          package_map.clear ();
-        }
-      else
-        delete this;
-    }
-
-    octave_value_list
-    meta_subsref (const std::string& type,
-                  const std::list<octave_value_list>& idx, int nargout);
-
-    void meta_release (void);
-
-    bool meta_accepts_postfix_index (char type) const
-    {
-      return (type == '.');
-    }
-
-    octave_value find (const std::string& nm);
+    friend class cdef_class;
 
   private:
 
-    std::string full_name;
-    std::map<std::string, cdef_class> class_map;
-    std::map<std::string, octave_value> function_map;
-    std::map<std::string, cdef_package> package_map;
-
-    // The number of registered members in this package (classes, packages).
-    // This only accounts for the members that back-reference to this package.
-    octave_idx_type member_count;
-
-    typedef std::map<std::string, cdef_class>::iterator class_iterator;
-    typedef std::map<std::string, cdef_class>::const_iterator class_const_iterator;
-    typedef std::map<std::string, octave_value>::iterator function_iterator;
-    typedef std::map<std::string, octave_value>::const_iterator function_const_iterator;
-    typedef std::map<std::string, cdef_package>::iterator package_iterator;
-    typedef std::map<std::string, cdef_package>::const_iterator package_const_iterator;
-
-    cdef_package_rep (const cdef_package_rep& p)
-      : cdef_meta_object_rep (p), full_name (p.full_name),
-        class_map (p.class_map), function_map (p.function_map),
-        package_map (p.package_map), member_count (p.member_count)
-    { }
-
-    cdef_package wrap (void)
+    class
+    cdef_package_rep : public cdef_meta_object_rep
     {
-      refcount++;
-      return cdef_package (this);
-    }
-  };
+    public:
+
+      cdef_package_rep (void) : cdef_meta_object_rep (), member_count (0) { }
+
+      cdef_package_rep& operator = (const cdef_package_rep&) = delete;
+
+      ~cdef_package_rep (void) = default;
 
-public:
+      cdef_object_rep * copy (void) const { return new cdef_package_rep (*this); }
+
+      bool is_package (void) const { return true; }
+
+      std::string get_name (void) const { return get("Name").string_value (); }
+
+      void set_name (const std::string& nm) { put ("Name", nm); }
+
+      void install_class (const cdef_class& cls, const std::string& nm);
 
-  cdef_package (void) : cdef_meta_object () { }
+      void install_function (const octave_value& fcn, const std::string& nm);
+
+      void install_package (const cdef_package& pack, const std::string& nm);
+
+      Cell get_classes (void) const;
+
+      Cell get_functions (void) const;
 
-  cdef_package (const std::string& nm)
-    : cdef_meta_object (new cdef_package_rep ())
-  {
-    get_rep ()->set_name (nm);
-  }
+      Cell get_packages (void) const;
+
+      octave_idx_type static_count (void) const { return member_count; }
+
+      void destroy (void)
+      {
+        if (member_count)
+          {
+            m_count++;
+            cdef_package lock (this);
 
-  cdef_package (const cdef_package& pack) : cdef_meta_object (pack) { }
+            member_count = 0;
+            class_map.clear ();
+            package_map.clear ();
+          }
+        else
+          delete this;
+      }
+
+      octave_value_list
+      meta_subsref (const std::string& type,
+                    const std::list<octave_value_list>& idx, int nargout);
+
+      void meta_release (void);
+
+      bool meta_accepts_postfix_index (char type) const
+      {
+        return (type == '.');
+      }
+
+      octave_value find (const std::string& nm);
 
-  cdef_package (const cdef_object& obj)
-    : cdef_meta_object (obj)
-  {
-    // This should never happen...
-    if (! is_package ())
-      error ("internal error: invalid assignment from %s to meta.package object",
-             class_name ().c_str ());
-  }
+    private:
+
+      std::string full_name;
+      std::map<std::string, cdef_class> class_map;
+      std::map<std::string, octave_value> function_map;
+      std::map<std::string, cdef_package> package_map;
+
+      // The number of registered members in this package (classes, packages).
+      // This only accounts for the members that back-reference to this package.
+      octave_idx_type member_count;
 
-  cdef_package& operator = (const cdef_package& pack)
-  {
-    cdef_object::operator = (pack);
+      typedef std::map<std::string, cdef_class>::iterator class_iterator;
+      typedef std::map<std::string, cdef_class>::const_iterator class_const_iterator;
+      typedef std::map<std::string, octave_value>::iterator function_iterator;
+      typedef std::map<std::string, octave_value>::const_iterator function_const_iterator;
+      typedef std::map<std::string, cdef_package>::iterator package_iterator;
+      typedef std::map<std::string, cdef_package>::const_iterator package_const_iterator;
+
+      cdef_package_rep (const cdef_package_rep& p)
+        : cdef_meta_object_rep (p), full_name (p.full_name),
+          class_map (p.class_map), function_map (p.function_map),
+          package_map (p.package_map), member_count (p.member_count)
+      { }
 
-    return *this;
-  }
+      cdef_package wrap (void)
+      {
+        m_count++;
+        return cdef_package (this);
+      }
+    };
 
-  ~cdef_package (void) = default;
+  public:
 
-  void install_class (const cdef_class& cls, const std::string& nm)
-  {
-    get_rep ()->install_class (cls, nm);
-  }
+    cdef_package (void) : cdef_meta_object () { }
+
+    cdef_package (const std::string& nm)
+      : cdef_meta_object (new cdef_package_rep ())
+    {
+      get_rep ()->set_name (nm);
+    }
+
+    cdef_package (const cdef_package& pack) : cdef_meta_object (pack) { }
 
-  void install_function (const octave_value& fcn, const std::string& nm)
-  {
-    get_rep ()->install_function (fcn, nm);
-  }
+    cdef_package (const cdef_object& obj)
+      : cdef_meta_object (obj)
+    {
+      // This should never happen...
+      if (! is_package ())
+        error ("internal error: invalid assignment from %s to meta.package object",
+               class_name ().c_str ());
+    }
 
-  void install_package (const cdef_package& pack, const std::string& nm)
-  {
-    get_rep ()->install_package (pack, nm);
-  }
+    cdef_package& operator = (const cdef_package& pack)
+    {
+      cdef_object::operator = (pack);
+
+      return *this;
+    }
 
-  Cell get_classes (void) const
-  {
-    return get_rep ()->get_classes ();
-  }
+    ~cdef_package (void) = default;
+
+    void install_class (const cdef_class& cls, const std::string& nm)
+    {
+      get_rep ()->install_class (cls, nm);
+    }
 
-  Cell get_functions (void) const
-  {
-    return get_rep ()->get_functions ();
-  }
+    void install_function (const octave_value& fcn, const std::string& nm)
+    {
+      get_rep ()->install_function (fcn, nm);
+    }
+
+    void install_package (const cdef_package& pack, const std::string& nm)
+    {
+      get_rep ()->install_package (pack, nm);
+    }
 
-  Cell get_packages (void) const
-  {
-    return get_rep ()->get_packages ();
-  }
+    Cell get_classes (void) const
+    {
+      return get_rep ()->get_classes ();
+    }
 
-  std::string get_name (void) const { return get_rep ()->get_name (); }
+    Cell get_functions (void) const
+    {
+      return get_rep ()->get_functions ();
+    }
 
-  octave_value find (const std::string& nm)
-  {
-    return get_rep ()->find (nm);
-  }
+    Cell get_packages (void) const
+    {
+      return get_rep ()->get_packages ();
+    }
+
+    std::string get_name (void) const { return get_rep ()->get_name (); }
 
-private:
+    octave_value find (const std::string& nm)
+    {
+      return get_rep ()->find (nm);
+    }
+
+  private:
 
-  cdef_package_rep * get_rep (void)
-  {
-    return dynamic_cast<cdef_package_rep *> (cdef_object::get_rep ());
-  }
+    cdef_package_rep * get_rep (void)
+    {
+      return dynamic_cast<cdef_package_rep *> (cdef_object::get_rep ());
+    }
 
-  const cdef_package_rep * get_rep (void) const
-  {
-    return dynamic_cast<const cdef_package_rep *> (cdef_object::get_rep ());
-  }
+    const cdef_package_rep * get_rep (void) const
+    {
+      return dynamic_cast<const cdef_package_rep *> (cdef_object::get_rep ());
+    }
 
-  friend void install_classdef (octave::interpreter& interp);
-};
+    friend void install_classdef (interpreter& interp);
+  };
+}
 
 #endif