Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > fe79e52f483d083598b746128e94a3a5 > files > 54

libcodeblocks-devel-8.02-2mdv2009.0.i586.rpm

/*
 * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
 * http://www.gnu.org/licenses/lgpl-3.0.html
 */

#ifndef ID_H
#define ID_H
#undef new

#include <wx/string.h>

/*
* Base class for providing a string ID
*/
class ID
{
    wxString p__id;

public:
    ID(){};
    ID(const wxString& id) : p__id(id){};
    explicit ID(const ID& cpy) : p__id(cpy.id()){};

    wxString id() const
    {
        return p__id;
    };

    void set_id(const wxString& s)
    {
        p__id.assign(s);
    };

    bool operator==(const ID& other) const
    {
        return id().IsSameAs(other.id());
    };

    bool operator==(const wxString& other) const
    {
        return id().IsSameAs(other);
    };
};

#endif