mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-11 14:45:33 +08:00
generic type-erased container types CSequence and CCollection, including predicate-based algorithms
refs #81
This commit is contained in:
@@ -1,6 +1,19 @@
|
||||
#ifndef BLACKMISC_VALUEOBJECT_H
|
||||
#define BLACKMISC_VALUEOBJECT_H
|
||||
|
||||
namespace BlackMisc
|
||||
{
|
||||
class CValueObject;
|
||||
}
|
||||
|
||||
/*!
|
||||
* qHash overload, needed for storing CValueObject in a QSet.
|
||||
* \param value
|
||||
* \return
|
||||
*/
|
||||
// Appears before all #include directives, to workaround an issue with GCC where the overload is not visible in QSet
|
||||
unsigned int qHash(const BlackMisc::CValueObject &value);
|
||||
|
||||
#include "blackmisc/debug.h"
|
||||
#include <QtDBus/QDBusMetaType>
|
||||
#include <QString>
|
||||
|
||||
Reference in New Issue
Block a user