Krita Source Code Documentation
Loading...
Searching...
No Matches
recorder_export_config.cpp File Reference
#include "recorder_export_config.h"
#include <kis_config.h>
#include <QString>
#include <QDir>
#include <QRegularExpression>

Go to the source code of this file.

Functions

bool operator!= (const RecorderProfile &left, const RecorderProfile &right)
 
bool operator== (const RecorderProfile &left, const RecorderProfile &right)
 

Function Documentation

◆ operator!=()

bool operator!= ( const RecorderProfile & left,
const RecorderProfile & right )

Definition at line 480 of file recorder_export_config.cpp.

481{
482 return !(left == right);
483}

◆ operator==()

bool operator== ( const RecorderProfile & left,
const RecorderProfile & right )

Definition at line 473 of file recorder_export_config.cpp.

474{
475 return left.arguments == right.arguments
476 && left.name == right.name
477 && left.extension == right.extension;
478}

References RecorderProfile::arguments, RecorderProfile::extension, and RecorderProfile::name.