mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
14 lines
227 B
C++
14 lines
227 B
C++
#pragma once
|
|
|
|
|
|
#include <sstream>
|
|
#include <fstream>
|
|
#include <memory>
|
|
#include "../../DesktopEditor/common/Types.h"
|
|
|
|
namespace CFCPP
|
|
{
|
|
using Stream = std::shared_ptr<std::iostream>;
|
|
std::streamsize Length(const Stream& st);
|
|
}
|