From 49e5f7b8f8b67db4f16f4536c33b7f5535381c48 Mon Sep 17 00:00:00 2001
From: Laurent Van Migroet <l.vanmiegroet@ulg.ac.be>
Date: Thu, 18 Nov 2010 14:26:28 +0000
Subject: [PATCH] Add readLUA for reading lua from API (dependance on
 "bindings.h" in GMOdelIO_Mesh)

---
 Geo/GModel.h          | 2 ++
 Geo/GModelIO_Mesh.cpp | 7 ++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/Geo/GModel.h b/Geo/GModel.h
index 9befada9bf..731251c214 100644
--- a/Geo/GModel.h
+++ b/Geo/GModel.h
@@ -565,6 +565,8 @@ class GModel
   // Abaqus
   int writeINP(const std::string &name, bool saveAll=false, 
                double scalingFactor=1.0);
+  
+  int readLUA(const std::string &name);
 
   void save(std::string fileName);
   void load(std::string fileName);
diff --git a/Geo/GModelIO_Mesh.cpp b/Geo/GModelIO_Mesh.cpp
index 719319e92b..b2367004cf 100644
--- a/Geo/GModelIO_Mesh.cpp
+++ b/Geo/GModelIO_Mesh.cpp
@@ -31,6 +31,7 @@
 #include "MVertexPositionSet.h"
 #include "Context.h"
 #include "OS.h"
+#include "bindings.h"
 
 #if defined(HAVE_POST)
 #include "PView.h"
@@ -3212,7 +3213,11 @@ int GModel::readDIFF(const std::string &name)
   fclose(fp);
   return 1;
 }
-
+int GModel::readLUA(const std::string &name)
+{
+	int status = binding::instance()->readFile(name.c_str());
+	return status;
+}
 int GModel::writeDIFF(const std::string &name, bool binary, bool saveAll,
                       double scalingFactor)
 {
-- 
GitLab