summaryrefslogtreecommitdiff
path: root/SA_POP/Standalone/UserInput.h
blob: b1b2b52111c522b89488599d8c0749e4c08d3579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// -*- C++ -*-
// $Id$

//=============================================================================
/**
 * @file  UserInput.h
 *
 * This file contains the UserInput class definition for the input adapter
 * that provides a user interface for testing SA-POP.
 *
 * @author  John S. Kinnebrew <john.s.kinnebrew@vanderbilt.edu>
 */
//=============================================================================

#ifndef SA_POP_USER_INPUT_H_
#define SA_POP_USER_INPUT_H_

#include "SA_POP_Types.h"
#include "UserInput.h"
#include "Builder.h"
#include "Planner.h"


namespace SA_POP {

  /**
   * @class UserInput
   *
   * @brief Input adapter that provides a user interface for testing SA-POP.
   */
  class UserInput {
  public:
    /// Constructor.
    UserInput (void);

    /// Destructor.
    virtual ~UserInput (void);
  };

};  /* SA_POP namespace */

#endif /* SA_POP_USER_INPUT_H_ */