bsnes-plus/common/nall/qt/concept.hpp
2018-06-23 01:46:49 -04:00

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