mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 22:09:52 +08:00

Thanks to [marked JavaScript library](https://github.com/chjj/marked) by Christopher Jeffrey. The [style sheet](http://kevinburke.bitbucket.org/markdowncss/markdown.css) was created by Kevin Burke. Signed-off-by: Le Tan <tamlokveer@gmail.com>
16 lines
257 B
C++
16 lines
257 B
C++
#ifndef VUTILS_H
|
|
#define VUTILS_H
|
|
|
|
#include <QString>
|
|
|
|
class VUtils
|
|
{
|
|
public:
|
|
VUtils();
|
|
|
|
static QString readFileFromDisk(const QString &filePath);
|
|
static bool writeFileToDisk(const QString &filePath, const QString &text);
|
|
};
|
|
|
|
#endif // VUTILS_H
|