--------------------------- ComponentSignature::c-tor construct from type list
| 17 | // construct from type list |
| 18 | // |
| 19 | ComponentSignature::ComponentSignature(T_CompTypeList const& types) |
| 20 | : m_Impl(types) |
| 21 | { |
| 22 | std::sort(m_Impl.begin(), m_Impl.end()); |
| 23 | } |
| 24 | |
| 25 | //--------------------------- |
| 26 | // ComponentSignature::c-tor |