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 436 of file recorder_export_config.cpp.

437{
438 return !(left == right);
439}

◆ operator==()

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

Definition at line 429 of file recorder_export_config.cpp.

430{
431 return left.arguments == right.arguments
432 && left.name == right.name
433 && left.extension == right.extension;
434}

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