File: user.h

package info (click to toggle)
qt6-base 6.4.2%2Bdfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 286,644 kB
  • sloc: cpp: 1,766,049; ansic: 290,706; xml: 127,305; python: 19,130; java: 8,010; asm: 4,009; perl: 2,132; sh: 1,636; javascript: 1,234; makefile: 122
file content (39 lines) | stat: -rw-r--r-- 643 bytes parent folder | download
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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef USER_H
#define USER_H

#include <QObject>

//! [user-class]

class User : public QObject
{
    Q_OBJECT

public:
    enum Country {
        None,
        Finland,
        Germany,
        Norway,
    };

    Country country() const { return m_country; }
    void setCountry(Country country);

    int age() const { return m_age; }
    void setAge(int age);

signals:
    void countryChanged();
    void ageChanged();

private:
    Country m_country = Country::None;
    int m_age = 0;
};

//! [user-class]
#endif // USER_H