/** \file
 *
 *  Contains the DerivationModule class definition.
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

/** \defgroup modules_derivation Loadable Module: Derivation
 *
 *  The DerivationModule provides components that typically take
 *  the outputs of a navigation or science sensors and transform
 *  them into other useful quantities.
 */

#ifndef DERIVATIONMODULE_H_
#define DERIVATIONMODULE_H_

#include "module/Module.h"

/**
 *  The DerivationModule provides components that typically take
 *  the outputs of a navigation or science sensors and transform
 *  them into other useful quantities.
 *
 *  \ingroup modules_derivation
 */
class DerivationModule : public Module
{
public:
    /// Constructor
    DerivationModule();

    /// Destructor
    virtual ~DerivationModule();

    void loadComponents( Logger& logger );

private:

};

/// Class factories

/// create_module must be implemented, following the
/// class implementation:
extern "C" Module* create_module()
{
    return new DerivationModule();
}

/// destroy_module must be implemented, following the
/// class implementation:
extern "C" void destroy_module( Module* module )
{
    delete module;
}

#endif /*DERIVATIONMODULE_H_*/
