[Cppunit-cvs] cppunit2/include/opentest forwards.h,1.9,1.10 interfaces.h,1.7,1.8 serializedtesttrans
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2006-03-06 08:41:39
|
Update of /cvsroot/cppunit/cppunit2/include/opentest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7204/include/opentest Modified Files: forwards.h interfaces.h serializedtesttransport.h serializer.h Log Message: * dead-code removal, obsolescence annotiation Index: forwards.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/forwards.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** forwards.h 11 Dec 2005 17:16:08 -0000 1.9 --- forwards.h 6 Mar 2006 08:40:48 -0000 1.10 *************** *** 15,39 **** typedef CppTL::ConstString String; ! class ResourceList; ! class TestDeclarator; class TestPlan; - class TestPlanEntry; class TestPlans; ! class TestRunTracker; ! ! class RemoteMessage; ! class RemoteMessageServer; class ResultAssertion; class ResultInputOutput; - class ResultLog; class ResultStatus; - class Stream; - class TestDescriptions; - class TestPlan; - class TestRunnerInterface; - class TestDriverInterface; class Connector; typedef unsigned int TestId; --- 15,53 ---- typedef CppTL::ConstString String; ! // interfaces.h ! class Connectable; ! class TestRunnerInterface; ! class TestDriverInterface; ! class TestDescriptionCommon; ! class TestCaseDescription; ! class TestSuiteDescription; ! class TestDescriptions; class TestPlan; class TestPlans; ! class ResultLog; class ResultAssertion; class ResultInputOutput; class ResultStatus; + // remoteinterfaces.h + class RemoteMessage; + class MessageTransport; + class MessageServerProxy; + class TestDriverProxy; + class RemoteMessageServer; + class TestDriverServer; + class TestRunnerProxy; + class TestRunnerServer; + + // connector.h + class ConnectionStatusListener; class Connector; + class DirectConnector; + // serializer.h + class Packets; + class Stream; + + // forwards.h typedef unsigned int TestId; *************** *** 43,48 **** typedef CppTL::SharedPtr<RemoteMessage> RemoteMessagePtr; ! typedef CppTL::SharedPtr<TestPlanEntry> TestPlanEntryPtr; ! typedef CppTL::AnyEnumerator<TestPlanEntryPtr> TestPlanEntryPtrEnum; typedef CppTL::IntrusivePtr<Connector> ConnectorPtr; --- 57,62 ---- typedef CppTL::SharedPtr<RemoteMessage> RemoteMessagePtr; ! //typedef CppTL::SharedPtr<TestPlanEntry> TestPlanEntryPtr; ! //typedef CppTL::AnyEnumerator<TestPlanEntryPtr> TestPlanEntryPtrEnum; typedef CppTL::IntrusivePtr<Connector> ConnectorPtr; Index: serializer.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/serializer.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** serializer.h 11 Dec 2005 17:16:08 -0000 1.11 --- serializer.h 6 Mar 2006 08:40:49 -0000 1.12 *************** *** 15,19 **** typedef CppTL::LargestUnsignedInt LargestUnsignedInt; ! class Packets { friend class PacketsTest; --- 15,19 ---- typedef CppTL::LargestUnsignedInt LargestUnsignedInt; ! class OPENTEST_API Packets { friend class PacketsTest; *************** *** 177,181 **** ! class Stream { public: --- 177,181 ---- ! class OPENTEST_API Stream { public: Index: interfaces.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/interfaces.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** interfaces.h 11 Dec 2005 17:16:08 -0000 1.7 --- interfaces.h 6 Mar 2006 08:40:48 -0000 1.8 *************** *** 174,177 **** --- 174,178 ---- }; + // Currently unused... class OPENTEST_API ResultInputOutput { Index: serializedtesttransport.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/serializedtesttransport.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** serializedtesttransport.h 6 Sep 2005 07:43:48 -0000 1.1 --- serializedtesttransport.h 6 Mar 2006 08:40:48 -0000 1.2 *************** *** 2,5 **** --- 2,10 ---- # define OPENTEST_SERIALIZEDTESTTRANSPORT_H_INCLUDED + + /* Unused code, need to be updated to work with connector.h... + */ + + # include <opentest/forwards.h> # include <opentest/remoteinterfaces.h> |