You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2010/05/29 19:51:49 UTC

svn commit: r949427 - /lucene/lucy/trunk/core/Lucy/Index/Snapshot.bp

Author: marvin
Date: Sat May 29 17:51:49 2010
New Revision: 949427

URL: http://svn.apache.org/viewvc?rev=949427&view=rev
Log:
Make Snapshot_Set_Path() public.

Modified:
    lucene/lucy/trunk/core/Lucy/Index/Snapshot.bp

Modified: lucene/lucy/trunk/core/Lucy/Index/Snapshot.bp
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/core/Lucy/Index/Snapshot.bp?rev=949427&r1=949426&r2=949427&view=diff
==============================================================================
--- lucene/lucy/trunk/core/Lucy/Index/Snapshot.bp (original)
+++ lucene/lucy/trunk/core/Lucy/Index/Snapshot.bp Sat May 29 17:51:49 2010
@@ -35,7 +35,6 @@ class Lucy::Index::Snapshot extends Lucy
     public uint32_t
     Num_Entries(Snapshot *self);
 
-
     /** Add a filepath to the snapshot. 
      */
     public void
@@ -72,11 +71,14 @@ class Lucy::Index::Snapshot extends Lucy
     public void
     Write_File(Snapshot *self, Folder *folder, const CharBuf *path = NULL);
 
-    void
+    /** Set the path to the file that the Snapshot object serves as a proxy
+     * for.
+     */
+    public void
     Set_Path(Snapshot *self, const CharBuf *path);
 
-    /** The path to the file that the Snapshot serves as a proxy for.
-     * Initially NULL; updated by Read_File(), Write_File(), and Set_Path().
+    /** Get the path to the snapshot file.  Initially NULL; updated by
+     * Read_File(), Write_File(), and Set_Path().
      */
     public nullable CharBuf*
     Get_Path(Snapshot *self);