Beautified source code of appfw/src/base/inc
[platform/framework/native/appfw.git] / src / base / inc / FBase_StringConverter.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file                FBase_StringConverter.h
19  * @brief               This is the header file for the _StringConverter class.
20  */
21 #ifndef _FBASE_STRING_CONVERTER_H_
22 #define _FBASE_STRING_CONVERTER_H_
23
24 #include <FBaseString.h>
25
26 namespace Tizen { namespace Base
27 {
28
29 class _OSP_EXPORT_ _StringConverter
30 {
31 public:
32         /**
33          *      Convert String instance to Char array type
34          *
35          *      @return         A Char array
36          *      @param[in]      str                     A String instance
37          */
38         static char* CopyToCharArrayN(const String& str);
39
40         /**
41          *      Convert String instance to Char array type
42          *
43          *      @return         A Char array
44          *      @param[in]      pValue                  A wchar_t pointer
45          */
46         static char* CopyToCharArrayN(const wchar_t* pValue);
47
48 }; // _StringConverter
49 }} // Tizen::Base
50 #endif // _FBASE_STRING_CONVERTER_H_