Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/windows-test/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • release/201811
  • release/201808
  • releases/beta1
  • packaging
  • releases/alpha
  • 1.0.0
  • 0.2.0
  • 0.1.0
21 results

MinimalHistoryBackend.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    MinimalHistoryBackend.h 2.38 KiB
    /************************************************************************************
     *   Copyright (C) 2014-2015 by Savoir-Faire Linux                                  *
     *   Author : Emmanuel Lepage Vallee <emmanuel.lepage@savoirfairelinux.com>         *
     *                                                                                  *
     *   This library 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 2.1 of the License, or (at your option) any later version.             *
     *                                                                                  *
     *   This library is distributed in the hope that it will be useful,                *
     *   but WITHOUT ANY WARRANTY; without even the implied warranty of                 *
     *   MERCHANTABILITY or 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 library; if not, write to the Free Software            *
     *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA *
     ***********************************************************************************/
    #ifndef MINIMALHISTORYBACKEND_H
    #define MINIMALHISTORYBACKEND_H
    
    #import <collectioninterface.h>
    
    class Call;
    
    template<typename T> class CollectionMediator;
    
    class LIB_EXPORT MinimalHistoryBackend : public CollectionInterface
    {
    public:
        explicit MinimalHistoryBackend(CollectionMediator<Call>* mediator);
        virtual ~MinimalHistoryBackend();
    
        virtual bool load() override;
        virtual bool reload() override;
        virtual bool clear() override;
        virtual QString    name     () const override;
        virtual QString    category () const override;
        virtual QVariant   icon     () const override;
        virtual bool       isEnabled() const override;
        virtual QByteArray id       () const override;
        virtual FlagPack<SupportedFeatures>  supportedFeatures() const override;
        int daysSince(time_t timestamp);
    
    
    private:
        CollectionMediator<Call>*  m_pMediator;
    };
    
    #endif