mirror of
https://github.com/fralx/LimeReport.git
synced 2025-11-25 08:28:06 +03:00
Define code style and format all source file using clang-format-14
except those placed in 3rdparty directories.
This commit is contained in:
@@ -32,19 +32,17 @@
|
||||
#include <QObject>
|
||||
namespace LimeReport {
|
||||
|
||||
class SerializatorIntf
|
||||
{
|
||||
class SerializatorIntf {
|
||||
public:
|
||||
virtual QVariant loadValue() = 0;
|
||||
virtual void save(const QVariant& value,QString name) = 0;
|
||||
virtual ~SerializatorIntf(){}
|
||||
virtual void save(const QVariant& value, QString name) = 0;
|
||||
virtual ~SerializatorIntf() { }
|
||||
};
|
||||
|
||||
class CryptedSerializator : public virtual SerializatorIntf
|
||||
{
|
||||
class CryptedSerializator: public virtual SerializatorIntf {
|
||||
public:
|
||||
virtual void setPassPhrase(const QString& passPhrase) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace LimeReport
|
||||
#endif // LRSERIALIZATORINTF_H
|
||||
|
||||
Reference in New Issue
Block a user