]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
remove unused constructor
authorfps <fps@opencascade.com>
Thu, 5 Sep 2013 14:43:52 +0000 (14:43 +0000)
committerfps <fps@opencascade.com>
Thu, 5 Sep 2013 14:43:52 +0000 (14:43 +0000)
16 files changed:
src/XAO/BooleanField.cxx
src/XAO/BooleanField.hxx
src/XAO/BooleanStep.cxx
src/XAO/BooleanStep.hxx
src/XAO/DoubleField.cxx
src/XAO/DoubleField.hxx
src/XAO/DoubleStep.cxx
src/XAO/DoubleStep.hxx
src/XAO/IntegerField.cxx
src/XAO/IntegerField.hxx
src/XAO/IntegerStep.cxx
src/XAO/IntegerStep.hxx
src/XAO/StringField.cxx
src/XAO/StringField.hxx
src/XAO/StringStep.cxx
src/XAO/StringStep.hxx

index e69ac7484383736d482e95b338b0d8911529611d..8396cb4c43dd10cf0916b924a37265eb9b6bf7bf 100644 (file)
 
 using namespace XAO;
 
-BooleanField::BooleanField(const XAO::Dimension& dimension,
-                           const int& nbElements, const int& nbComponents)
-    : Field("", dimension, nbElements, nbComponents)
-{
-}
-
 BooleanField::BooleanField(const std::string& name, const XAO::Dimension& dimension,
                            const int& nbElements, const int& nbComponents)
     : Field(name, dimension, nbElements, nbComponents)
index 950e2be5b433522646803767a2da1486cc9a364f..2a240db7991a9de4f541b3a0a580652e280b372b 100644 (file)
@@ -34,7 +34,6 @@ namespace XAO
     class BooleanField : public Field
     {
     public:
-        BooleanField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
         BooleanField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::BOOLEAN; }
index 02c2f2960ba8b6146caef45a380b087201320590..3fab963bc2391318db4721d883ca63b0985e8cb5 100644 (file)
 
 using namespace XAO;
 
-BooleanStep::BooleanStep(const int& nbElements, const int& nbComponents)
-{
-    init(0, 0, nbElements, nbComponents);
-}
-
-BooleanStep::BooleanStep(const int& step, const int& nbElements, const int& nbComponents)
-{
-    init(step, 0, nbElements, nbComponents);
-}
-
 BooleanStep::BooleanStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
-{
-    init(step, stamp, nbElements, nbComponents);
-}
-
-void BooleanStep::init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
 {
     m_nbElements = nbElements;
     m_nbComponents = nbComponents;
index 860eb3084db3d64d3957221c05e8fa52114ae9d4..d82ee4a38e80a3df7ffdc5616f48b0f916744dda 100644 (file)
@@ -33,8 +33,6 @@ namespace XAO
     class BooleanStep : public Step
     {
     public:
-        BooleanStep(const int& nbElements, const int& nbComponents);
-        BooleanStep(const int& step, const int& nbElements, const int& nbComponents);
         BooleanStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::BOOLEAN; }
@@ -75,9 +73,6 @@ namespace XAO
         virtual const std::string getStringValue(const int& element, const int& component);
         virtual void setStringValue(const int& element, const int& component, const std::string& value);
 
-    private:
-        void init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
-
     private:
         std::vector< std::vector<bool> > m_values;
     };
index dc5aa57d0c135e5ac727960aed5789400866cdda..d8cda41b35cf0840e46af010b13a29ce5c1a1ec3 100644 (file)
 
 using namespace XAO;
 
-DoubleField::DoubleField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents)
-    : Field("", dimension, nbElements, nbComponents)
-{
-}
-
 DoubleField::DoubleField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents)
     : Field(name, dimension, nbElements, nbComponents)
 {
index 20d3b77c03f281511e1a2a07b544af1c09e3d521..152efbd5b0d4bfcbb12fa3d17f57ce76de76659a 100644 (file)
@@ -35,7 +35,6 @@ namespace XAO
     class DoubleField : public Field
     {
     public:
-        DoubleField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
         DoubleField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::DOUBLE; }
index 3b96121e980bd6d9275d2ec214a0e6238a9a6f56..10cb30fcfa478d374526ac3821aceaa7624a144a 100644 (file)
 
 using namespace XAO;
 
-DoubleStep::DoubleStep(const int& nbElements, const int& nbComponents)
-{
-    init(0, 0, nbElements, nbComponents);
-}
-
-DoubleStep::DoubleStep(const int& step, const int& nbElements, const int& nbComponents)
-{
-    init(step, 0, nbElements, nbComponents);
-}
-
 DoubleStep::DoubleStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
-{
-    init(step, stamp, nbElements, nbComponents);
-}
-
-void DoubleStep::init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
 {
     m_nbElements = nbElements;
     m_nbComponents = nbComponents;
index 0c8d9a1a0e1a8be1fdc53757aab12e942eba6fd2..ccf25ada3cc3b98e3367346b87f6c9fb80b870c0 100644 (file)
@@ -32,8 +32,6 @@ namespace XAO
     class DoubleStep : public Step
     {
     public:
-        DoubleStep(const int& nbElements, const int& nbComponents);
-        DoubleStep(const int& step, const int& nbElements, const int& nbComponents);
         DoubleStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::DOUBLE; }
@@ -52,9 +50,6 @@ namespace XAO
         virtual const std::string getStringValue(const int& element, const int& component);
         virtual void setStringValue(const int& element, const int& component, const std::string& value);
 
-    private:
-        void init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
-
     private:
         std::vector< std::vector<double> > m_values;
     };
index 4b5b09f71425036600f9ae975f2166ec031ee0a6..3c73be2c93ec62d6483ed39ea47a98c65df1ad7b 100644 (file)
 
 using namespace XAO;
 
-IntegerField::IntegerField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents)
-    : Field("", dimension, nbElements, nbComponents)
-{
-}
-
 IntegerField::IntegerField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents)
     : Field(name, dimension, nbElements, nbComponents)
 {
index 699adda79db60fb82218dc6e7447feef4140cc13..bc8ff1d279972061d69fc526da81a7a2ad85c917 100644 (file)
@@ -35,7 +35,6 @@ namespace XAO
     class IntegerField : public Field
     {
     public:
-        IntegerField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
         IntegerField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::INTEGER; }
index 0cf5b3d264e7b6b42c107cf9ac2de2bb0f8cc68c..f1e4a3ca19a395d8b116db52e8ccdf56d5734863 100644 (file)
 
 using namespace XAO;
 
-IntegerStep::IntegerStep(const int& nbElements, const int& nbComponents)
-{
-    init(0, 0, nbElements, nbComponents);
-}
-
-IntegerStep::IntegerStep(const int& step, const int& nbElements, const int& nbComponents)
-{
-    init(step, 0, nbElements, nbComponents);
-}
-
 IntegerStep::IntegerStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
-{
-    init(step, stamp, nbElements, nbComponents);
-}
-
-void IntegerStep::init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
 {
     m_nbElements = nbElements;
     m_nbComponents = nbComponents;
index 862d52a021fab5ad628f378a3733fffa202b64b4..b1ad9ce21db3159d7ef493936d25999f259fa5bf 100644 (file)
@@ -32,8 +32,6 @@ namespace XAO
     class IntegerStep : public Step
     {
     public:
-        IntegerStep(const int& nbElements, const int& nbComponents);
-        IntegerStep(const int& step, const int& nbElements, const int& nbComponents);
         IntegerStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::INTEGER; }
@@ -52,9 +50,6 @@ namespace XAO
         virtual const std::string getStringValue(const int& element, const int& component);
         virtual void setStringValue(const int& element, const int& component, const std::string& value);
 
-    private:
-        void init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
-
     private:
         std::vector< std::vector<int> > m_values;
     };
index 55ce778eb18a1bb3ed1ce94ccd306842a34bee57..1197ffa5825bfed265602b1092bef05f1edc549b 100644 (file)
 
 using namespace XAO;
 
-StringField::StringField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents)
-    : Field("", dimension, nbElements, nbComponents)
-{
-}
-
 StringField::StringField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents)
     : Field(name, dimension, nbElements, nbComponents)
 {
index 8618aafd8757a56e2babae26f3675b9497bdd08e..d7855cb330600de7687788b0c81e34d07bb317c3 100644 (file)
@@ -35,7 +35,6 @@ namespace XAO
     class StringField : public Field
     {
     public:
-        StringField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
         StringField(const std::string& name, const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents);
 
         virtual const XAO::Type getType() { return XAO::STRING; }
index 3e121890b05ea1e812a03645bd77066d6abccdd5..f4611013c93a9d61926368c0c565e377e1bcae11 100644 (file)
 
 using namespace XAO;
 
-StringStep::StringStep(const int& nbElements, const int& nbComponents)
-{
-    init(0, 0, nbElements, nbComponents);
-}
-
-StringStep::StringStep(const int& step, const int& nbElements, const int& nbComponents)
-{
-    init(step, 0, nbElements, nbComponents);
-}
-
 StringStep::StringStep(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
-{
-    init(step, stamp, nbElements, nbComponents);
-}
-
-void StringStep::init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents)
 {
     m_nbElements = nbElements;
     m_nbComponents = nbComponents;
index 3bd3e8895f8f2e407ccfce86f738e0fc0c648a41..bbd43592dae0f9fd99891d44d26e53f6586fb716 100644 (file)
@@ -53,9 +53,6 @@ namespace XAO
         virtual const std::string getStringValue(const int& element, const int& component);
         virtual void setStringValue(const int& element, const int& component, const std::string& value);
 
-    private:
-        void init(const int& step, const int& stamp, const int& nbElements, const int& nbComponents);
-
     private:
         std::vector< std::vector<std::string> > m_values;
     };