mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
Add .gitattributes rules for text and binary handling
This commit is contained in:
@ -1,34 +1,34 @@
|
||||
#ifndef YACREADER_LIBRARIES_H
|
||||
#define YACREADER_LIBRARIES_H
|
||||
|
||||
#include <QtCore>
|
||||
|
||||
class YACReaderLibraries : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
YACReaderLibraries();
|
||||
YACReaderLibraries(const YACReaderLibraries & source);
|
||||
QList<QString> getNames();
|
||||
QString getPath(const QString & name);
|
||||
QString getPath(int id);
|
||||
QString getName(int id);
|
||||
bool isEmpty();
|
||||
bool contains(const QString & name);
|
||||
bool contains(int id);
|
||||
void remove(const QString & name);
|
||||
void rename(const QString & oldName, const QString & newName);
|
||||
int getId(const QString & name);
|
||||
YACReaderLibraries & operator=(const YACReaderLibraries & source);
|
||||
QMap <QString , QPair<int,QString> > getLibraries();
|
||||
public slots:
|
||||
void addLibrary(const QString & name, const QString & path);
|
||||
void load();
|
||||
bool save();
|
||||
private:
|
||||
//name <id,path>
|
||||
QMap <QString , QPair<int,QString> > libraries;
|
||||
};
|
||||
|
||||
#endif // YACREADER_LIBRARIES_H
|
||||
#ifndef YACREADER_LIBRARIES_H
|
||||
#define YACREADER_LIBRARIES_H
|
||||
|
||||
#include <QtCore>
|
||||
|
||||
class YACReaderLibraries : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
YACReaderLibraries();
|
||||
YACReaderLibraries(const YACReaderLibraries & source);
|
||||
QList<QString> getNames();
|
||||
QString getPath(const QString & name);
|
||||
QString getPath(int id);
|
||||
QString getName(int id);
|
||||
bool isEmpty();
|
||||
bool contains(const QString & name);
|
||||
bool contains(int id);
|
||||
void remove(const QString & name);
|
||||
void rename(const QString & oldName, const QString & newName);
|
||||
int getId(const QString & name);
|
||||
YACReaderLibraries & operator=(const YACReaderLibraries & source);
|
||||
QMap <QString , QPair<int,QString> > getLibraries();
|
||||
public slots:
|
||||
void addLibrary(const QString & name, const QString & path);
|
||||
void load();
|
||||
bool save();
|
||||
private:
|
||||
//name <id,path>
|
||||
QMap <QString , QPair<int,QString> > libraries;
|
||||
};
|
||||
|
||||
#endif // YACREADER_LIBRARIES_H
|
||||
|
Reference in New Issue
Block a user