You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
462 B
C++
27 lines
462 B
C++
/*
|
|
* Author: Jun0x01@github.com
|
|
* Date: 2019.05.11
|
|
*/
|
|
#ifndef SU_DATA_STRCONVERTOR_INCLUDED
|
|
#define SU_DATA_STRCONVERTOR_INCLUDED
|
|
|
|
//#include "exportsDefine.h"
|
|
#include <iostream>
|
|
#include "Stream/ugdefs.h"
|
|
|
|
using namespace std;
|
|
using namespace UGC;
|
|
//namespace SuperMap
|
|
//{
|
|
class UGStrConvertor
|
|
{
|
|
public:
|
|
|
|
public:
|
|
|
|
static string Tostring(const UGString &str,OGDCCharset::Charset charset = OGDCCharset::UTF8 );
|
|
};
|
|
//}
|
|
#endif
|
|
|