summaryrefslogtreecommitdiff
path: root/src/operator-examine.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/operator-examine.cc')
-rw-r--r--src/operator-examine.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/operator-examine.cc b/src/operator-examine.cc
new file mode 100644
index 0000000..314641c
--- /dev/null
+++ b/src/operator-examine.cc
@@ -0,0 +1,26 @@
+/** --------------------------------------------------------------------
+ * @file operator-examine.cc
+ * @brief Implementation of the EXAMINE command
+ * @author Andreas Aardal Hanssen
+ * @date 2002-2005
+ * ----------------------------------------------------------------- **/
+#include "operators.h"
+
+using namespace ::std;
+using namespace Binc;
+
+//----------------------------------------------------------------------
+const std::string ExamineOperator::getName(void) const
+{
+ return "EXAMINE";
+}
+
+//----------------------------------------------------------------------
+ExamineOperator::ExamineOperator(void)
+{
+}
+
+//----------------------------------------------------------------------
+ExamineOperator::~ExamineOperator(void)
+{
+}