Commit db39f2e2 authored by acpaquette's avatar acpaquette Committed by Jesse Mapel
Browse files

Added missing Base Process Functor file/class

parent 8683003c
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
#ifndef ISISIMPORT_BASE_PROCESS_FUNCTOR_H
#define ISISIMPORT_BASE_PROCESS_FUNCTOR_H

namespace Isis {
  class ProcessFunctor {
    public:
      /**
       * Constructs a processFunctor
       *
       */
      ProcessFunctor() {}

      virtual ~ProcessFunctor() {}

      void operator()(Buffer &buf) const {};
  };
}

#endif