aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test_translation_kde.h.ref
blob: 623ba6a66f4bfeaa8850f536008c18395664ef31 (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_TESTTRANSLATIONKDE_H
#define TESTNAMESPACE_TESTTRANSLATIONKDE_H

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

namespace TestNameSpace {

class TestTranslationKde : public KConfigSkeleton
{
  public:

    TestTranslationKde( );
    ~TestTranslationKde() 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