diff OrthancCppClient/OrthancConnection.h @ 593:9d2592c08919

documentation completed
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 04 Oct 2013 15:04:37 +0200
parents 8fb9867d8089
children 2d0a347e8cfc
line wrap: on
line diff
--- a/OrthancCppClient/OrthancConnection.h	Wed Oct 02 17:40:49 2013 +0200
+++ b/OrthancCppClient/OrthancConnection.h	Fri Oct 04 15:04:37 2013 +0200
@@ -40,7 +40,7 @@
 {
   /**
    * {summary}{Connection to an instance of %Orthanc.}
-   * {description}{This class encapsulates a connection to an instance
+   * {description}{This class encapsulates a connection to a remote instance
    * of %Orthanc through its REST API.}
    **/  
   class LAAW_API OrthancConnection : 
@@ -108,10 +108,10 @@
     }
 
     /**
-     * {summary}{Refresh the list of the patients.}
+     * {summary}{Reload the list of the patients.}
      * {description}{This method will reload the list of the patients from the remote instance of %Orthanc. Pay attention to the fact that the patients that have been previously returned by GetPatient() will be invalidated.}
      **/
-    void Refresh()
+    void Reload()
     {
       ReadPatients();
       patients_.Invalidate();
@@ -159,7 +159,7 @@
     void DeletePatient(uint32_t index)
     {
       GetPatient(index).Delete();
-      Refresh();
+      Reload();
     }
 
     /**