diff OrthancFramework/Sources/Lua/LuaContext.h @ 4300:b30a8de92ad9

abi continued
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 05 Nov 2020 19:33:18 +0100
parents bf7b9edf6b81
children d9473bd5ed43
line wrap: on
line diff
--- a/OrthancFramework/Sources/Lua/LuaContext.h	Thu Nov 05 18:24:50 2020 +0100
+++ b/OrthancFramework/Sources/Lua/LuaContext.h	Thu Nov 05 19:33:18 2020 +0100
@@ -94,16 +94,10 @@
 
     ~LuaContext();
 
-    void Execute(const std::string& command)
-    {
-      ExecuteInternal(NULL, command);
-    }
+    void Execute(const std::string& command);
 
     void Execute(std::string& output,
-                 const std::string& command)
-    {
-      ExecuteInternal(&output, command);
-    }
+                 const std::string& command);
 
     void Execute(Json::Value& output,
                  const std::string& command);
@@ -112,10 +106,7 @@
 
 #if ORTHANC_ENABLE_CURL == 1
     void SetHttpCredentials(const char* username,
-                            const char* password)
-    {
-      httpClient_.SetCredentials(username, password);
-    }
+                            const char* password);
 #endif
 
     void RegisterFunction(const char* name,