Program Listing for File visitor.hpp

Return to documentation for file (/tmp/ws/src/ecl_core/ecl_command_line/include/ecl/command_line/visitor.hpp)

/*****************************************************************************
** Ifdefs
*****************************************************************************/

#ifndef TCLAP_VISITOR_H
#define TCLAP_VISITOR_H

namespace ecl {

class Visitor
{
    public:

        Visitor() { }

        virtual ~Visitor() { }

        virtual void visit() { }
};
} // namespace ecl


#endif