]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
const MEDCouplingFieldTemplate *ft -> const MEDCouplingFieldTemplate& ft
authorageay <ageay>
Fri, 8 Mar 2013 16:20:08 +0000 (16:20 +0000)
committerageay <ageay>
Fri, 8 Mar 2013 16:20:08 +0000 (16:20 +0000)
src/MEDCoupling_Swig/MEDCouplingCommon.i

index ffe999e44c6df04fe7fd0a37dec20859d3a68b8b..804e96ab04d7f9593bd12961014cd41be061a6a3 100644 (file)
@@ -6512,7 +6512,7 @@ namespace ParaMEDMEM
   {
   public:
     static MEDCouplingFieldDouble *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
-    static MEDCouplingFieldDouble *New(const MEDCouplingFieldTemplate *ft, TypeOfTimeDiscretization td=ONE_TIME);
+    static MEDCouplingFieldDouble *New(const MEDCouplingFieldTemplateft, TypeOfTimeDiscretization td=ONE_TIME);
     void setTimeUnit(const char *unit);
     const char *getTimeUnit() const;
     void synchronizeTimeWithSupport() throw(INTERP_KERNEL::Exception);
@@ -6612,7 +6612,7 @@ namespace ParaMEDMEM
         return MEDCouplingFieldDouble::New(type,td);
       }
 
-      MEDCouplingFieldDouble(const MEDCouplingFieldTemplate *ft, TypeOfTimeDiscretization td=ONE_TIME)
+      MEDCouplingFieldDouble(const MEDCouplingFieldTemplateft, TypeOfTimeDiscretization td=ONE_TIME)
       {
         return MEDCouplingFieldDouble::New(ft,td);
       }
@@ -7036,14 +7036,14 @@ namespace ParaMEDMEM
   class MEDCouplingFieldTemplate : public ParaMEDMEM::MEDCouplingField
   {
   public:
-    static MEDCouplingFieldTemplate *New(const MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception);
+    static MEDCouplingFieldTemplate *New(const MEDCouplingFieldDoublef) throw(INTERP_KERNEL::Exception);
     static MEDCouplingFieldTemplate *New(TypeOfField type);
     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
     void updateTime() const;
     %extend
        {
-         MEDCouplingFieldTemplate(const MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception)
+         MEDCouplingFieldTemplate(const MEDCouplingFieldDoublef) throw(INTERP_KERNEL::Exception)
          {
            return MEDCouplingFieldTemplate::New(f);
          }