#ifndef _X_H_
#define _X_H_

struct X
{
    virtual ~X() {}
    virtual bool Check() const
    {
        return false;
    }
};

#endif //_X_H_
