File: odbx-sql.hpp

package info (click to toggle)
libopendbx 1.4.6-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,960 kB
  • ctags: 1,006
  • sloc: sh: 10,899; ansic: 7,283; xml: 1,837; cpp: 1,696; makefile: 362; sed: 16
file content (19 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <string>


using std::string;


#ifndef ODBX_SQL_HPP
#define ODBX_SQL_HPP


struct format
{
	string delimiter;
	string separator;
	bool header;
};


#endif