Hydra 0.20
|
00001 00002 /* 00003 * Copyright (c) 2009 Aleksander B. Demko 00004 * This source code is distributed under the MIT license. 00005 * See the accompanying file LICENSE.MIT.txt for details. 00006 */ 00007 00008 #ifndef __INCLUDED_HYDRA_COMMANDIMPORT_H__ 00009 #define __INCLUDED_HYDRA_COMMANDIMPORT_H__ 00010 00011 #include <QString> 00012 00013 namespace hydra 00014 { 00015 // not a public function, used by hydra 00016 // in the future, make this a public object 00017 // that uses usable by the gui (takes a filename string, 00018 // does some kind of progressable-iteration 00019 // returns number of entries processed, or -1 on error 00020 int commandImport(const QString &filename, bool smartmerge); 00021 } 00022 00023 #endif 00024