2008-01-07 09:09:04 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Author: Valient Gough <vgough@pobox.com>
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
|
|
|
* Copyright (c) 2004, Valient Gough
|
2012-10-03 07:12:17 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
2013-10-20 00:35:26 +02:00
|
|
|
* option) any later version.
|
2008-01-07 09:09:04 +01:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
2012-10-03 07:12:17 +02:00
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-01-07 09:09:04 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _Interface_incl_
|
|
|
|
#define _Interface_incl_
|
|
|
|
|
|
|
|
#include <string>
|
2013-03-05 07:29:58 +01:00
|
|
|
#include "base/interface.pb.h"
|
|
|
|
|
|
|
|
namespace encfs {
|
2012-04-26 04:34:15 +02:00
|
|
|
|
|
|
|
// check if A implements the interface described by B.
|
|
|
|
// Note that implements(A, B) is not the same as implements(B, A)
|
|
|
|
// This checks the current() version and age() against B.current() for
|
|
|
|
// compatibility. Even if A.implements(B) is true, B > A may also be
|
|
|
|
// true, meaning B is a newer revision of the interface then A.
|
2013-10-20 00:35:26 +02:00
|
|
|
bool implements(const Interface &a, const Interface &b);
|
2013-10-21 07:38:27 +02:00
|
|
|
Interface makeInterface(const std::string &name, int major, int minor, int age);
|
2012-04-26 04:34:15 +02:00
|
|
|
|
2013-01-29 04:07:54 +01:00
|
|
|
// Read operation
|
2008-01-07 09:09:04 +01:00
|
|
|
class ConfigVar;
|
2013-10-20 00:35:26 +02:00
|
|
|
const ConfigVar &operator>>(const ConfigVar &, Interface &);
|
2008-01-07 09:09:04 +01:00
|
|
|
|
2013-10-20 00:35:26 +02:00
|
|
|
bool operator!=(const Interface &a, const Interface &b);
|
2008-01-07 09:09:04 +01:00
|
|
|
|
2013-03-05 07:29:58 +01:00
|
|
|
} // namespace encfs
|
|
|
|
|
2008-01-07 09:09:04 +01:00
|
|
|
#endif
|