template class CCL::DictionaryMethods

template <typename Dictionary>
class DictionaryMethods
{
public:
    // methods

    static bool equals (const Dictionary& d1, const Dictionary& d2);

    template  <typename StringType>
    static bool load (Dictionary& d, Attributes& a);

    template  <typename StringType>
    static bool save (
        Attributes& a,
        const Dictionary& d
    );

    static void dump (const Dictionary& d);
};