mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
11 lines
161 B
C++
11 lines
161 B
C++
#include "database.h"
|
|
|
|
class SqliteDatabase : public Database
|
|
{
|
|
public:
|
|
SqliteDatabase();
|
|
|
|
|
|
void escape(unsigned char* start,int size,std::string& retStr);
|
|
|
|
}; |