mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-31 17:42:55 +08:00
14 lines
192 B
C++
14 lines
192 B
C++
#ifndef SYMBOLS_H
|
|
#define SYMBOLS_H
|
|
|
|
#include <QString>
|
|
|
|
namespace QtCSV
|
|
{
|
|
const QString DOUBLE_QUOTE("\"");
|
|
const QString CR("\r");
|
|
const QString LF("\n");
|
|
}
|
|
|
|
#endif // SYMBOLS_H
|