mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
19 lines
324 B
C++
19 lines
324 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#if defined(_WIN32) || defined (_WIN64)
|
|
#include <atlbase.h>
|
|
#include <atlstr.h>
|
|
#endif
|
|
|
|
namespace FileSystem {
|
|
#ifdef UNICODE
|
|
typedef std::wstring String;
|
|
#else
|
|
typedef std::wstring String;
|
|
#endif
|
|
typedef std::vector<String> StringArray;
|
|
}
|