1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef HYDROData_InterpolatorsFactory_HeaderFile
20 #define HYDROData_InterpolatorsFactory_HeaderFile
22 #include <HYDROData.h>
24 #include <TCollection_AsciiString.hxx>
25 #include <NCollection_Sequence.hxx>
30 class HYDROData_IProfilesInterpolator;
33 * \class HYDROData_InterpolatorsFactory
35 * \brief Profile interpolators factory.
37 * Allows to register different types of interpolatotors (these interpolators should inherit HYDROData_IProfilesInterpolator).
38 * Once the interpolator of a certain type is registered it should be got by its name.
41 class HYDROData_InterpolatorsFactory
48 HYDROData_InterpolatorsFactory();
51 * Public virtual destructor.
53 virtual ~HYDROData_InterpolatorsFactory();
56 * Registers the interpolator of a certain type with the given name.
57 * \param theName the interpolator name used as identifier
59 template <class T> /*HYDRODATA_EXPORT */void Register( const TCollection_AsciiString& theName )
61 myInterpolators[theName.ToCString()] = new T();
65 * Get the appropriate interpolator by the name.
66 * \param theName name of the interpolator
67 * \returns the appropriate interpolator or NULL if interpolator with such name is not registered
69 HYDRODATA_EXPORT HYDROData_IProfilesInterpolator* GetInterpolator( const TCollection_AsciiString& theName ) const;
72 * Get list of registered interpolator names.
73 * \return the list of unique names
75 HYDRODATA_EXPORT NCollection_Sequence<TCollection_AsciiString> GetInterpolatorNames() const;
78 //! Map that stores all interpolators, identified by interpolator name (string)
79 typedef std::map<std::string, HYDROData_IProfilesInterpolator*> FactoryInterpolators;
81 FactoryInterpolators myInterpolators; ///< all interpolators stored by factory