/* * The information in this file is * Copyright(c) 2007 Ball Aerospace & Technologies Corporation * and is subject to the terms and conditions of the * GNU Lesser General Public License Version 2.1 * The license text is available from * http://www.gnu.org/licenses/lgpl.html */ #ifndef TUTORIAL4_H #define TUTORIAL4_H #include "ExecutableShell.h" class Tutorial4 : public ExecutableShell { public: Tutorial4(); virtual ~Tutorial4(); virtual bool getInputSpecification(PlugInArgList*& pInArgList); virtual bool getOutputSpecification(PlugInArgList*& pOutArgList); virtual bool execute(PlugInArgList* pInArgList, PlugInArgList* pOutArgList); }; #endif