digiKam
facedb_p.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam
4  *
5  * Date : 02-02-2012
6  * Description : Face database interface to train identities.
7  *
8  * Copyright (C) 2012-2013 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
9  * Copyright (C) 2010-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  * Copyright (C) 2019 by Thanh Trung Dinh <dinhthanhtrung1996 at gmail dot com>
11  * Copyright (C) 2020 by Nghia Duong <minhnghiaduong997 at gmail dot com>
12  *
13  * This program is free software; you can redistribute it
14  * and/or modify it under the terms of the GNU General
15  * Public License as published by the Free Software Foundation;
16  * either version 2, or (at your option)
17  * any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU General Public License for more details.
23  *
24  * ============================================================ */
25 
26 #ifndef DIGIKAM_FACE_DB_P_H
27 #define DIGIKAM_FACE_DB_P_H
28 
29 #include "facedb.h"
30 
31 // C++ includes
32 
33 #include <iterator>
34 
35 // Local includes
36 
37 #include "digikam_debug.h"
38 #include "kd_tree.h"
39 
40 namespace Digikam
41 {
42 
43 class Q_DECL_HIDDEN FaceDb::Private
44 {
45 
46 public:
47  explicit Private()
48  : db(nullptr)
49  {
50  }
51 
53 };
54 
55 } // namespace Digikam
56 
57 #endif // DIGIKAM_FACE_DB_P_H
Definition: facedbbackend.h:40
Definition: facedb_p.h:44
FaceDbBackend * db
Definition: facedb_p.h:52
Private()
Definition: facedb_p.h:47
Definition: facedb.h:52
Definition: datefolderview.cpp:43