Salome HOME
Get relevant changes from V7_dev branch (copyright update, adm files etc)
[tools/medcoupling.git] / src / INTERP_KERNEL / ExprEval / InterpKernelFunction.hxx
index 8f5cf489eac20c7f7441d11d216961a08523b16b..2c4ac0bbf62099514858ce2d414966159a76174d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -53,7 +53,7 @@ namespace INTERP_KERNEL
     virtual void operateStackOfDoubleSafe(std::vector<double>& stck) const { operateStackOfDouble(stck); }
     virtual const char *getRepr() const = 0;
     virtual bool isACall() const = 0;
-    virtual Function *deepCpy() const = 0;
+    virtual Function *deepCopy() const = 0;
   };
 
   class INTERPKERNEL_EXPORT UnaryFunction : public Function
@@ -71,7 +71,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    IdentityFunction *deepCpy() const { return new IdentityFunction; }
+    IdentityFunction *deepCopy() const { return new IdentityFunction; }
   public:
     static const char REPR[];
   };
@@ -85,7 +85,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    PositiveFunction *deepCpy() const { return new PositiveFunction; }
+    PositiveFunction *deepCopy() const { return new PositiveFunction; }
   public:
     static const char REPR[];
   };
@@ -99,7 +99,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    NegateFunction *deepCpy() const { return new NegateFunction; }
+    NegateFunction *deepCopy() const { return new NegateFunction; }
   public:
     static const char REPR[];
   };
@@ -113,7 +113,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    CosFunction *deepCpy() const { return new CosFunction; }
+    CosFunction *deepCopy() const { return new CosFunction; }
   public:
     static const char REPR[];
   };
@@ -127,7 +127,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    SinFunction *deepCpy() const { return new SinFunction; }
+    SinFunction *deepCopy() const { return new SinFunction; }
   public:
     static const char REPR[];
   };
@@ -141,7 +141,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    TanFunction *deepCpy() const { return new TanFunction; }
+    TanFunction *deepCopy() const { return new TanFunction; }
   public:
     static const char REPR[];
   };
@@ -156,7 +156,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    ACosFunction *deepCpy() const { return new ACosFunction; }
+    ACosFunction *deepCopy() const { return new ACosFunction; }
   public:
     static const char REPR[];
   };
@@ -171,7 +171,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    ASinFunction *deepCpy() const { return new ASinFunction; }
+    ASinFunction *deepCopy() const { return new ASinFunction; }
   public:
     static const char REPR[];
   };
@@ -185,7 +185,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    ATanFunction *deepCpy() const { return new ATanFunction; }
+    ATanFunction *deepCopy() const { return new ATanFunction; }
   public:
     static const char REPR[];
   };
@@ -199,7 +199,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    CoshFunction *deepCpy() const { return new CoshFunction; }
+    CoshFunction *deepCopy() const { return new CoshFunction; }
   public:
     static const char REPR[];
   };
@@ -213,7 +213,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    SinhFunction *deepCpy() const { return new SinhFunction; }
+    SinhFunction *deepCopy() const { return new SinhFunction; }
   public:
     static const char REPR[];
   };
@@ -227,7 +227,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    TanhFunction *deepCpy() const { return new TanhFunction; }
+    TanhFunction *deepCopy() const { return new TanhFunction; }
   public:
     static const char REPR[];
   };
@@ -242,7 +242,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    SqrtFunction *deepCpy() const { return new SqrtFunction; }
+    SqrtFunction *deepCopy() const { return new SqrtFunction; }
   public:
     static const char REPR[];
   };
@@ -256,7 +256,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    AbsFunction *deepCpy() const { return new AbsFunction; }
+    AbsFunction *deepCopy() const { return new AbsFunction; }
   public:
     static const char REPR[];
   };
@@ -270,7 +270,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    ExpFunction *deepCpy() const { return new ExpFunction; }
+    ExpFunction *deepCopy() const { return new ExpFunction; }
   public:
     static const char REPR[];
   };
@@ -285,7 +285,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    LnFunction *deepCpy() const { return new LnFunction; }
+    LnFunction *deepCopy() const { return new LnFunction; }
   public:
     static const char REPR[];
   };
@@ -300,7 +300,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    LogFunction *deepCpy() const { return new LogFunction; }
+    LogFunction *deepCopy() const { return new LogFunction; }
   public:
     static const char REPR[];
   };
@@ -315,7 +315,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    Log10Function *deepCpy() const { return new Log10Function; }
+    Log10Function *deepCopy() const { return new Log10Function; }
   public:
     static const char REPR[];
   };
@@ -335,7 +335,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    PlusFunction *deepCpy() const { return new PlusFunction; }
+    PlusFunction *deepCopy() const { return new PlusFunction; }
   public:
     static const char REPR[];
   };
@@ -349,7 +349,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    MinusFunction *deepCpy() const { return new MinusFunction; }
+    MinusFunction *deepCopy() const { return new MinusFunction; }
   public:
     static const char REPR[];
   };
@@ -363,7 +363,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    MultFunction *deepCpy() const { return new MultFunction; }
+    MultFunction *deepCopy() const { return new MultFunction; }
   public:
     static const char REPR[];
   };
@@ -378,7 +378,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    DivFunction *deepCpy() const { return new DivFunction; }
+    DivFunction *deepCopy() const { return new DivFunction; }
   public:
     static const char REPR[];
   };
@@ -393,7 +393,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    PowFunction *deepCpy() const { return new PowFunction; }
+    PowFunction *deepCopy() const { return new PowFunction; }
   public:
     static const char REPR[];
   };
@@ -407,7 +407,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    MaxFunction *deepCpy() const { return new MaxFunction; }
+    MaxFunction *deepCopy() const { return new MaxFunction; }
   public:
     static const char REPR[];
   };
@@ -421,7 +421,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    MinFunction *deepCpy() const { return new MinFunction; }
+    MinFunction *deepCopy() const { return new MinFunction; }
   public:
     static const char REPR[];
   };
@@ -435,7 +435,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    GreaterThanFunction *deepCpy() const { return new GreaterThanFunction; }
+    GreaterThanFunction *deepCopy() const { return new GreaterThanFunction; }
   public:
     static const char REPR[];
   };
@@ -449,7 +449,7 @@ namespace INTERP_KERNEL
     void operateStackOfDouble(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    LowerThanFunction *deepCpy() const { return new LowerThanFunction; }
+    LowerThanFunction *deepCopy() const { return new LowerThanFunction; }
   public:
     static const char REPR[];
   };
@@ -470,7 +470,7 @@ namespace INTERP_KERNEL
     void operateStackOfDoubleSafe(std::vector<double>& stck) const;
     const char *getRepr() const;
     bool isACall() const;
-    IfFunction *deepCpy() const { return new IfFunction; }
+    IfFunction *deepCopy() const { return new IfFunction; }
   public:
     static const char REPR[];
   };