Added file logger
This commit is contained in:
parent
eba9b3d759
commit
f83119ce7e
69 changed files with 1375 additions and 827 deletions
|
@ -135,7 +135,7 @@ public:
|
|||
* \brief Gets a pointer to this instance's version list.
|
||||
* \return A pointer to the available version list for this instance.
|
||||
*/
|
||||
virtual QSharedPointer<BaseVersionList> versionList() const;
|
||||
virtual std::shared_ptr<BaseVersionList> versionList() const;
|
||||
|
||||
/*!
|
||||
* \brief Gets this instance's settings object.
|
||||
|
@ -179,9 +179,9 @@ signals:
|
|||
void nuked(BaseInstance * inst);
|
||||
|
||||
protected:
|
||||
QSharedPointer<BaseInstancePrivate> inst_d;
|
||||
std::shared_ptr<BaseInstancePrivate> inst_d;
|
||||
};
|
||||
|
||||
// pointer for lazy people
|
||||
typedef QSharedPointer<BaseInstance> InstancePtr;
|
||||
typedef std::shared_ptr<BaseInstance> InstancePtr;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue