00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _ECLA_COMMAND_H_
00017 #define _ECLA_COMMAND_H_
00018
00019 #ifndef DTN_CONFIG_STATE
00020 #error "MUST INCLUDE dtn-config.h before including this file"
00021 #endif
00022
00023 #if defined(XERCES_C_ENABLED) && defined(EXTERNAL_CL_ENABLED)
00024
00025 #include <oasys/tclcmd/TclCommand.h>
00026
00027 namespace dtn {
00028
00032 class ECLACommand : public oasys::TclCommand {
00033 public:
00034 ECLACommand();
00035 virtual int exec(int argc, const char** argv, Tcl_Interp* interp);
00036 };
00037
00038
00039 }
00040
00041 #endif // XERCES_C_ENABLED && EXTERNAL_CL_ENABLED
00042 #endif // _ECLA_COMMAND_H_