Salome HOME
Fix for the issue #593: do not remove naming attribute, but use TNaming_Builder for...
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Tools.h
1 /*
2  * ExchangePlugin_Tools.h
3  *
4  *  Created on: May 15, 2015
5  *      Author: spo
6  */
7
8 #ifndef EXCHANGEPLUGIN_TOOLS_H_
9 #define EXCHANGEPLUGIN_TOOLS_H_
10
11 #include <ExchangePlugin.h>
12
13 #include <list>
14 #include <string>
15
16 /**\class ExchangePlugin_Tools
17  * \ingroup Plugins
18  * \brief Internal tools for the plugin.
19  */
20 class EXCHANGEPLUGIN_EXPORT ExchangePlugin_Tools {
21 public:
22   /// Splits theString using theDelimiter.
23   static std::list<std::string> split(const std::string& theString,
24                                       char theDelimiter);
25
26 };
27
28 #endif /* EXCHANGEPLUGIN_TOOLS_H_ */