From 1f95f32dce2fcfa9a81cad0eaced7f01c1d77353 Mon Sep 17 00:00:00 2001
From: Marcel Loose <loose@astron.nl>
Date: Tue, 24 Apr 2007 14:36:37 +0000
Subject: [PATCH] BugID: 1050

A whole bunch of code changes. Most notably:
* All BBSStrategy and all BBSStep classes now inherit from the Command base
  class.
* CommandVisitor is used in quite a number of places to "restore lost type
  information"; i.e. to recover the exact type of a Command.
* CommandQueue now stores and retrieves Commands instead of BBSSteps and
  BBSStrategy.
---
 CEP/BB/BBSControl/include/BBSControl/Makefile.am |  1 -
 CEP/BB/BBSControl/src/CommandQueue.cc            |  2 --
 CEP/BB/BBSControl/test/Makefile.am               | 14 ++------------
 3 files changed, 2 insertions(+), 15 deletions(-)

diff --git a/CEP/BB/BBSControl/include/BBSControl/Makefile.am b/CEP/BB/BBSControl/include/BBSControl/Makefile.am
index 674690a5678..913176a3430 100644
--- a/CEP/BB/BBSControl/include/BBSControl/Makefile.am
+++ b/CEP/BB/BBSControl/include/BBSControl/Makefile.am
@@ -27,7 +27,6 @@ pkginclude_HEADERS = \
 	IterationResult.h \
 	KernelProcessControl.h \
 	NextChunkCommand.h \
-	Property.h \
 	SolverProcessControl.h
 
 noinst_HEADERS = \
diff --git a/CEP/BB/BBSControl/src/CommandQueue.cc b/CEP/BB/BBSControl/src/CommandQueue.cc
index 9f770331b53..13ab7f9fb82 100644
--- a/CEP/BB/BBSControl/src/CommandQueue.cc
+++ b/CEP/BB/BBSControl/src/CommandQueue.cc
@@ -27,13 +27,11 @@
 #include <BBSControl/CommandQueue.h>
 #include <BBSControl/CommandQueueTransactors.h>
 #include <BBSControl/QueryBuilder/AddCommand.h>
-#include <BBSControl/QueryBuilder/GetNextCommand.h>
 #include <BBSControl/BBSSingleStep.h>
 #include <BBSControl/BBSSolveStep.h>
 #include <BBSControl/BBSStrategy.h>
 #include <BBSControl/BBSStructs.h>
 #include <BBSControl/Exceptions.h>
-#include <BBSControl/CommandInserter.h>
 #include <APS/ParameterSet.h>
 #include <APS/Exceptions.h>
 #include <Common/StreamUtil.h>
diff --git a/CEP/BB/BBSControl/test/Makefile.am b/CEP/BB/BBSControl/test/Makefile.am
index 39b90791999..7e325df5781 100644
--- a/CEP/BB/BBSControl/test/Makefile.am
+++ b/CEP/BB/BBSControl/test/Makefile.am
@@ -1,8 +1,6 @@
-check_PROGRAMS			= tpqxx \
-				  tpqutil \
+check_PROGRAMS			= tpqutil \
 				  tBBSStrategy \
-				  tCommandQueue \
-				  tQuery
+				  tCommandQueue
 
 check_SCRIPTS			= tpqutil.sh \
 				  tBBSStrategy.sh \
@@ -14,10 +12,6 @@ CHECKTOOLPROGS			= tpqutil \
 				  tCommandQueue
 #ENDCHECKTOOLPROGS
 
-tpqxx_SOURCES			= tpqxx.cc
-tpqxx_LDADD			= ../src/libbbscontrol.la
-tpqxx_DEPENDENCIES		= ../src/libbbscontrol.la $(LOFAR_DEPEND)
-
 tpqutil_SOURCES			= tpqutil.cc
 tpqutil_LDADD			= ../src/libbbscontrol.la
 tpqutil_DEPENDENCIES		= ../src/libbbscontrol.la $(LOFAR_DEPEND)
@@ -31,10 +25,6 @@ tCommandQueue_SOURCES		= tCommandQueue.cc
 tCommandQueue_LDADD		= ../src/libbbscontrol.la
 tCommandQueue_DEPENDENCIES	= ../src/libbbscontrol.la $(LOFAR_DEPEND)
 
-tQuery_SOURCES			= tQuery.cc
-tQuery_LDADD			= ../src/libbbscontrol.la
-tQuery_DEPENDENCIES		= ../src/libbbscontrol.la $(LOFAR_DEPEND)
-
 TESTS				= $(check_SCRIPTS)
 
 EXTRA_DIST			= $(check_SCRIPTS) \
-- 
GitLab