Bumped copyright dates for 2013
[barry.git] / desktop / src / osconv22.h
blob85092cf7b8cfcb4437f8b3a1921bcf8d8c7a1f50
1 ///
2 /// \file osconv22.h
3 /// Converter class for opensync 0.22 plugins
4 ///
6 /*
7 Copyright (C) 2009-2013, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_OSCONV22_H__
23 #define __BARRY_OSCONV22_H__
25 #include "osbase.h"
27 namespace OpenSync {
29 class Converter22 : public Converter
31 OpenSync::API &m_api;
33 protected:
34 std::string GrabField(const std::string &cfg, const std::string &name);
36 public:
37 Converter22(OpenSync::API &api);
39 virtual bool IsPluginSupported(const std::string &plugin_name,
40 std::string *appname = 0) const;
41 virtual plugin_ptr CreateAndLoadPlugin(const Member &member);
43 virtual std::string GetPluginName(const Config::Barry &) const;
44 virtual std::string GetPluginName(const Config::Evolution &) const;
45 virtual std::string GetPluginName(const Config::Evolution3 &) const;
46 virtual std::string GetPluginName(const Config::Google &) const;
47 virtual std::string GetPluginName(const Config::KDEPim &) const;
48 virtual std::string GetPluginName(const Config::Unsupported &) const;
50 virtual bool IsConfigured(const Config::Barry &) const;
51 virtual bool IsConfigured(const Config::Evolution &) const;
52 virtual bool IsConfigured(const Config::Evolution3 &) const;
53 virtual bool IsConfigured(const Config::Google &) const;
54 virtual bool IsConfigured(const Config::KDEPim &) const;
55 virtual bool IsConfigured(const Config::Unsupported &) const;
57 virtual Config::pst_type GetSupportedSyncTypes(const Config::Barry &) const;
58 virtual Config::pst_type GetSupportedSyncTypes(const Config::Evolution &) const;
59 virtual Config::pst_type GetSupportedSyncTypes(const Config::Evolution3 &) const;
60 virtual Config::pst_type GetSupportedSyncTypes(const Config::Google &) const;
61 virtual Config::pst_type GetSupportedSyncTypes(const Config::KDEPim &) const;
62 virtual Config::pst_type GetSupportedSyncTypes(const Config::Unsupported &) const;
64 virtual void Load(Config::Barry &config, const Member &member);
65 virtual void Load(Config::Evolution &config, const Member &member);
66 virtual void Load(Config::Evolution3 &config, const Member &member);
67 virtual void Load(Config::Google &config, const Member &member);
68 virtual void Load(Config::KDEPim &config, const Member &member);
69 virtual void Load(Config::Unsupported &config, const Member &member);
71 virtual void Save(const Config::Barry &config, const std::string &group_name);
72 virtual void Save(const Config::Evolution &config, const std::string &group_name);
73 virtual void Save(const Config::Evolution3 &config, const std::string &group_name);
74 virtual void Save(const Config::Google &config, const std::string &group_name);
75 virtual void Save(const Config::KDEPim &config, const std::string &group_name);
76 virtual void Save(const Config::Unsupported &config, const std::string &group_name);
79 } // namespace OpenSync
81 #endif