mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
10 lines
191 B
C++
10 lines
191 B
C++
#ifndef NALL_QT_CONCEPT_HPP
|
|
#define NALL_QT_CONCEPT_HPP
|
|
|
|
#include <nall/concept.hpp>
|
|
|
|
namespace nall {
|
|
template<typename T> struct has_count<QList<T>> { enum { value = true }; };
|
|
}
|
|
|
|
#endif
|