Krita Source Code Documentation
Loading...
Searching...
No Matches
recorder_export_config.h File Reference
#include <QString>
#include <QList>
#include "recorder_export_settings.h"

Go to the source code of this file.

Classes

class  RecorderExportConfig
 

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.