#ifndef FOO_HPP
#define FOO_HPP

class Foo
{
    public:
        virtual
            void
            msg() const = 0;
};

#endif
