1 // Written in D programming language 2 /** 3 * Imports of all type converting functions to be in one place. 4 * To add new libpq type you should add import to the module. 5 * 6 * Copyright: © 2014 DSoftOut 7 * License: Subject to the terms of the MIT license, as written in the included LICENSE file. 8 * Authors: NCrashed <ncrashed@gmail.com> 9 */ 10 module pgator.db.pq.types.all; 11 12 public 13 { 14 import pgator.db.pq.types.geometric; 15 import pgator.db.pq.types.inet; 16 import pgator.db.pq.types.numeric; 17 import pgator.db.pq.types.plain; 18 import pgator.db.pq.types.time; 19 import pgator.db.pq.types.array; 20 }