.. _program_listing_file__tmp_ws_src_ecl_core_ecl_command_line_include_ecl_command_line_visitor.hpp: Program Listing for File visitor.hpp ==================================== |exhale_lsh| :ref:`Return to documentation for file ` (``/tmp/ws/src/ecl_core/ecl_command_line/include/ecl/command_line/visitor.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /***************************************************************************** ** Ifdefs *****************************************************************************/ #ifndef TCLAP_VISITOR_H #define TCLAP_VISITOR_H namespace ecl { class Visitor { public: Visitor() { } virtual ~Visitor() { } virtual void visit() { } }; } // namespace ecl #endif