]> git.saurik.com Git - wxWidgets.git/commitdiff
remove implementations from interface headers
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 1 Feb 2009 19:56:06 +0000 (19:56 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 1 Feb 2009 19:56:06 +0000 (19:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/persist.h
interface/wx/ptr_scpd.h
interface/wx/string.h
interface/wx/tooltip.h

index beae4c785f407cd64b1f39614d36e4c00315f28d..8c31fb2976fcef19822a249f7fdd27ebc8343a94 100644 (file)
@@ -62,10 +62,7 @@ public:
             defined for the objects of this class.
      */
     template <class T>
-    wxPersistentObject *Register(T *obj)
-    {
-        return Register(obj, wxCreatePersistentObject(obj));
-    }
+    wxPersistentObject *Register(T *obj);
 
     /**
         Register an object with the manager.
@@ -117,7 +114,7 @@ public:
         @see SaveAndUnregister()
      */
     void Save(void *obj);
-    
+
     /**
         Restore the object properties previously saved by Save().
 
@@ -233,10 +230,7 @@ protected:
             @true if the value was saved or @false if an error occurred.
      */
     template <typename T>
-    bool SaveValue(const wxString& name, T value) const
-    {
-        return wxPersistenceManager::Get().SaveValue(*this, name, value);
-    }
+    bool SaveValue(const wxString& name, T value) const;
 
     /**
         Restore the value saved by Save().
@@ -251,10 +245,7 @@ protected:
             found or an error occurred.
      */
     template <typename T>
-    bool RestoreValue(const wxString& name, T *value)
-    {
-        return wxPersistenceManager::Get().RestoreValue(*this, name, value);
-    }
+    bool RestoreValue(const wxString& name, T *value);
 };
 
 /**
index b551c81cb08511229a739f6ce92fad150e1ad05e..7e0caa3a6993ebfd61526a1cead99ae865f6bcb8 100644 (file)
@@ -431,13 +431,8 @@ public:
         The returned pointer may be @NULL. It must not be deleted by the
         caller, call @c reset(NULL) instead.
      */
-    T *get() const { return m_array; }
+    T *get() const;
 
     /// Swaps the contents of this array with another one.
-    void swap(wxScopedArray &other)
-    {
-        T * const tmp = other.m_array;
-        other.m_array = m_array;
-        m_array = tmp;
-    }
+    void swap(wxScopedArray &other);
 };
index 6cb0dc695d14816b630b0846353e18186f2a38e8..e04c1f7b51dbdf5eb6b8ba07cec79b87f0d2df93 100644 (file)
@@ -1550,14 +1550,6 @@ public:
             characters of the @a val string.
 */
 template<bool (T)(const wxUniChar& c)>
-    inline bool wxStringCheck(const wxString& val)
-    {
-        for ( wxString::const_iterator i = val.begin();
-              i != val.end();
-              ++i )
-            if (T(*i) == 0)
-                return false;
-        return true;
-    }
+    inline bool wxStringCheck(const wxString& val);
 
 //@}
index cb4abd73ae192566653ca17f2c74f8113336506c..ea6f30d2064b745e4002bd0e7246801aa90e6320 100644 (file)
@@ -72,7 +72,7 @@ public:
 
         @note Currently this function is wxMSW-only.
     */
-    static void SetMaxWidth(int width) { ms_maxWidth = width; }
+    static void SetMaxWidth(int width);
 
     /**
         Set the delay between subsequent tooltips to appear.