Bumped copyright dates to 2012
[barry/progweb.git] / desktop / src / osconv22.h
blob452b3e8ea00631c548bac7e902f735fc0b9d033e
1 ///
2 /// \file osconv22.h
3 /// Converter class for opensync 0.22 plugins
4 ///
6 /*
7 Copyright (C) 2009-2012, 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::Google &) const;
46 virtual std::string GetPluginName(const Config::KDEPim &) const;
47 virtual std::string GetPluginName(const Config::Unsupported &) const;
49 virtual bool IsConfigured(const Config::Barry &) const;
50 virtual bool IsConfigured(const Config::Evolution &) const;
51 virtual bool IsConfigured(const Config::Google &) const;
52 virtual bool IsConfigured(const Config::KDEPim &) const;
53 virtual bool IsConfigured(const Config::Unsupported &) const;
55 virtual Config::pst_type GetSupportedSyncTypes(const Config::Barry &) const;
56 virtual Config::pst_type GetSupportedSyncTypes(const Config::Evolution &) const;
57 virtual Config::pst_type GetSupportedSyncTypes(const Config::Google &) const;
58 virtual Config::pst_type GetSupportedSyncTypes(const Config::KDEPim &) const;
59 virtual Config::pst_type GetSupportedSyncTypes(const Config::Unsupported &) const;
61 virtual void Load(Config::Barry &config, const Member &member);
62 virtual void Load(Config::Evolution &config, const Member &member);
63 virtual void Load(Config::Google &config, const Member &member);
64 virtual void Load(Config::KDEPim &config, const Member &member);
65 virtual void Load(Config::Unsupported &config, const Member &member);
67 virtual void Save(const Config::Barry &config, const std::string &group_name);
68 virtual void Save(const Config::Evolution &config, const std::string &group_name);
69 virtual void Save(const Config::Google &config, const std::string &group_name);
70 virtual void Save(const Config::KDEPim &config, const std::string &group_name);
71 virtual void Save(const Config::Unsupported &config, const std::string &group_name);
74 } // namespace OpenSync
76 #endif