00001 /* 00002 * Copyright 2007 BBN Technologies Corporation 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); you 00005 * may not use this file except in compliance with the License. You 00006 * may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 00013 * implied. 00014 */ 00015 00016 /* 00017 * $Id$ 00018 */ 00019 00020 #ifndef _SECURITY_COMMAND_H_ 00021 #define _SECURITY_COMMAND_H_ 00022 00023 #include <oasys/tclcmd/TclCommand.h> 00024 00025 #ifdef BSP_ENABLED 00026 00027 namespace dtn { 00028 00029 class SecurityCommand : public oasys::TclCommand { 00030 00031 public: 00032 00033 SecurityCommand(); 00034 00038 virtual int exec(int argc, const char** argv, Tcl_Interp* interp); 00039 }; 00040 00041 } // namespace dtn 00042 00043 #endif /* BSP_ENABLED */ 00044 00045 #endif /* _SECURITY_COMMAND_H_ */