menu: added new Keywords tag to .desktop files
[barry.git] / tools / boostwrap.h
blobe2fe6e9a4a7a81c04b8f81bb8972815f9e599aef
1 ///
2 /// \file boostwrap.h
3 /// Wrap Boost serialization into its own lib, so each usage
4 /// in the tools doesn't cause a compile speed meltdown.
5 ///
7 /*
8 Copyright (C) 2012-2013, Net Direct Inc. (http://www.netdirect.ca/)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_TOOLS_BOOSTWRAP_H__
24 #define __BARRY_TOOLS_BOOSTWRAP_H__
26 #include <barry/barry.h>
28 #undef HANDLE_PARSER
29 #define HANDLE_PARSER(tname) \
30 bool LoadBoostFile(const std::string &filename, \
31 std::vector<Barry::tname> &container, \
32 std::string &dbName, \
33 std::string &errmsg); \
34 bool SaveBoostFile(const std::string &filename, \
35 const std::vector<Barry::tname> &container, \
36 std::string &errmsg);
37 ALL_KNOWN_PARSER_TYPES
39 #endif