Home · All Namespaces · All Classes
Functions

src/libmeegotouchhome/launcheraction.cpp File Reference

(a4da810a5a49b96979e403bb7963bdabbc581c17)

#include "launcheraction.h"
Include dependency graph for launcheraction.cpp:

Go to the source code of this file.

Functions

bool operator== (const LauncherAction &a, const LauncherAction &b)
 Comparison operator for LauncherAction objects.
bool operator!= (const LauncherAction &a, const LauncherAction &b)
 The reverse of the comparison operator for LauncherAction objects.

Function Documentation

bool operator!= ( const LauncherAction a,
const LauncherAction b 
)

The reverse of the comparison operator for LauncherAction objects.

Definition at line 41 of file launcheraction.cpp.

{
    return !(a == b);
}

bool operator== ( const LauncherAction a,
const LauncherAction b 
)

Comparison operator for LauncherAction objects.

Definition at line 32 of file launcheraction.cpp.

{
    return 
        a.isValid() && b.isValid() &&
        a.name() == b.name() &&
        a.localizedName() == b.localizedName() &&
        a.icon() == b.icon();
}


Copyright © 2010 Nokia Corporation Generated on Thu Nov 4 2010 18:20:42
Doxygen 1.7.1
MeeGo Touch