Bläddra i källkod

Simplified InputProcessor

git-svn-id: https://svn.microneil.com/svn/SNF4CGP/trunk@6 59e8e3e7-56fa-483b-b4b4-fa6ab0af3dfc
master
madscientist 15 år sedan
förälder
incheckning
dd748b38ef
1 ändrade filer med 1 tillägg och 8 borttagningar
  1. 1
    8
      SNF4CGP/InputProcessor.hpp

+ 1
- 8
SNF4CGP/InputProcessor.hpp Visa fil

@@ -3,14 +3,11 @@
// See www.armresearch.com for more information.
//
// The InputProcessor is responsible for accpting and parsing commands from
// CommuniGate, assigning Jobs to Workers, and watching for the QUIT command.
// CommuniGate.
#ifndef IncludedInputProcessor
#define IncludedInputProcessor
#include "JobPool.hpp"
#include "WorkerPool.hpp"
#include <string>
using namespace std;
@@ -28,12 +25,8 @@ struct Command {
};
class InputProcessor { // Here is the InputProcessor object.
private:
JobPool& Jobs; // It knows where to get jobs.
WorkerPool& Workers; // It knows where to get workers.
public:
InputProcessor(JobPool J, WorkerPool W);
Command getCommand(); // One method: get the next command.
};

Laddar…
Avbryt
Spara