35 #ifndef IE_COREMAYA_MSTRINGLESS_H
36 #define IE_COREMAYA_MSTRINGLESS_H
38 #include "maya/MString.h"
49 struct less<MString> : binary_function<MString, MString, bool>
51 bool operator()(
const MString &a,
const MString &b )
const
53 return strcmp( a.asChar(), b.asChar() ) < 0;
59 #endif // IE_COREMAYA_MSTRINGLESS_H
Definition: MStringLess.h:40