aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test_translation_kde_domain.h.ref
blob: dd98915bff0cfe1c8cb004bf679be2db5303040c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// This file is generated by kconfig_compiler_kf5 from test_translation.kcfg.
// All changes you do to this file will be lost.
#ifndef TESTNAMESPACE_TESTTRANSLATIONKDEDOMAIN_H
#define TESTNAMESPACE_TESTTRANSLATIONKDEDOMAIN_H

#include <qglobal.h>
#include <kconfigskeleton.h>
#include <QCoreApplication>
#include <QDebug>

namespace TestNameSpace {

class TestTranslationKdeDomain : public KConfigSkeleton
{
  public:

    TestTranslationKdeDomain( );
    ~TestTranslationKdeDomain() override;

    /**
      Get Enable automatic saving of calendar
    */
    bool autoSave() const
    {
      return mAutoSave;
    }

    /**
      Is Enable automatic saving of calendar Immutable
    */
    bool isAutoSaveImmutable() const
    {
      return isImmutable( QStringLiteral( "AutoSave" ) );
    }

  protected:

    // General
    bool mAutoSave;

  private:
};

}

#endif