Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
f47bd1aa
Commit
f47bd1aa
authored
13 years ago
by
Emmanuel Lepage
Browse files
Options
Downloads
Patches
Plain Diff
[ #7876 ] Add some doxygen
parent
46ff1e09
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/Account.h
+1
-0
1 addition, 0 deletions
src/Account.h
src/AccountList.h
+1
-0
1 addition, 0 deletions
src/AccountList.h
src/CallModel.h
+2
-0
2 additions, 0 deletions
src/CallModel.h
src/Contact.h
+4
-0
4 additions, 0 deletions
src/Contact.h
src/ContactBackend.h
+1
-0
1 addition, 0 deletions
src/ContactBackend.h
with
9 additions
and
0 deletions
src/Account.h
+
1
−
0
View file @
f47bd1aa
...
...
@@ -29,6 +29,7 @@ class QString;
const
QString
account_state_name
(
QString
&
s
);
///@class Account a daemon account (SIP or AIX)
class
LIB_EXPORT
Account
:
public
QObject
{
Q_OBJECT
...
...
This diff is collapsed.
Click to expand it.
src/AccountList.h
+
1
−
0
View file @
f47bd1aa
...
...
@@ -28,6 +28,7 @@
#include
"Account.h"
#include
"typedefs.h"
///@class AccountList List of all daemon accounts
class
LIB_EXPORT
AccountList
:
public
QObject
{
Q_OBJECT
...
...
This diff is collapsed.
Click to expand it.
src/CallModel.h
+
2
−
0
View file @
f47bd1aa
...
...
@@ -40,6 +40,7 @@ class ContactBackend;
typedef
QHash
<
QString
,
Call
*>
CallHash
;
typedef
QList
<
Call
*>
CallList
;
///@class CallModelBase Base class for the central model/frontend
///This class need to exist because template classes can't have signals ans
///slots because Qt MOC generator can't guess the type at precompilation
class
LIB_EXPORT
CallModelBase
:
public
QObject
...
...
@@ -82,6 +83,7 @@ signals:
* with the MVC model. The MVC never got to a point were it was bug-free and the code was getting dirty. The Mirror model
* solution may be less "clean" than MVC, but is 3 time smaller and easier to improve (in fact, possible to improve).
*/
///@class CallModel Central model/frontend to deal with sflphoned
template
<
typename
CallWidget
,
typename
Index
>
class
LIB_EXPORT
CallModel
:
public
CallModelBase
{
public:
...
...
This diff is collapsed.
Click to expand it.
src/Contact.h
+
4
−
0
View file @
f47bd1aa
...
...
@@ -38,6 +38,7 @@ namespace KABC {
#include
"typedefs.h"
/**
* @class Contact Abstract version of a contact
@author Jérémy Quentin <jeremy.quentin@savoirfairelinux.com>
@author Emmanuel Lepage <emmanuel.lepage@savoirfairelinux.com>
*/
...
...
@@ -54,10 +55,12 @@ public:
QString
&
getType
()
{
return
m_pType
;
}
private
:
QString
m_pNumber
;
QString
m_pType
;
};
typedef
QList
<
Contact
::
PhoneNumber
*>
PhoneNumbers
;
private
:
...
...
@@ -72,6 +75,7 @@ private:
QString
m_pUid
;
bool
displayPhoto
;
PhoneNumbers
m_pNumbers
;
public
:
//Constructors & Destructors
explicit
Contact
();
...
...
This diff is collapsed.
Click to expand it.
src/ContactBackend.h
+
1
−
0
View file @
f47bd1aa
...
...
@@ -32,6 +32,7 @@ class Contact;
typedef
QList
<
Contact
*>
ContactList
;
///@class ContactBackend Allow different way to handle contact without poluting the library
class
LIB_EXPORT
ContactBackend
:
public
QObject
{
Q_OBJECT
public:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment