Update of /cvsroot/boost/boost/libs/statechart/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29327/libs/statechart/test

Modified Files:
        Jamfile Jamfile.v2 
Added Files:
        UnsuppDeepHistoryTest.cpp UnsuppDeepHistoryTest.vcproj 
Removed Files:
        UnsupportedDeepHistoryTest.cpp 
        UnsupportedDeepHistoryTest.vcproj 
Log Message:
Fixed file name length >31 issues found by boost inspection.
Renamed the following files:
ExceptionsAndOrthogonalStates.gif -> ExceptionsAndOrthStates.gif
TransitionsAcrossOrthogonalRegions.gif -> TransAcrossOrthRegions.gif
UnsupportedDeepHistoryTest.cpp -> UnsuppDeepHistoryTest.cpp
UnsupportedDeepHistoryTest.vcproj -> UnsuppDeepHistoryTest.vcproj

--- NEW FILE: UnsuppDeepHistoryTest.cpp ---
//////////////////////////////////////////////////////////////////////////////
// (c) Copyright Andreas Huber Doenni 2005-2006
// Distributed under the Boost Software License, Version 1.0. (See accompany-
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//////////////////////////////////////////////////////////////////////////////



#include <boost/statechart/state_machine.hpp>
#include <boost/statechart/simple_state.hpp>
#include <boost/statechart/deep_history.hpp>

#include <boost/mpl/list.hpp>



namespace sc = boost::statechart;
namespace mpl = boost::mpl;



struct A;
struct UnsupportedDeepHistoryTest : sc::state_machine<
  UnsupportedDeepHistoryTest, A > {};

struct B;
struct A : sc::simple_state<
  A, UnsupportedDeepHistoryTest, B, sc::has_deep_history > {};

  struct C;
  struct D;
  struct B : sc::simple_state< B, A, mpl::list< C, D > > {};

    struct C : sc::simple_state< C, B::orthogonal< 0 > > {};
    struct D : sc::simple_state< D, B::orthogonal< 1 > > {};


int main()
{
  UnsupportedDeepHistoryTest machine;
  machine.initiate();
  return 0;
}

--- NEW FILE: UnsuppDeepHistoryTest.vcproj ---
(This appears to be a binary file; contents omitted.)

Index: Jamfile
===================================================================
RCS file: /cvsroot/boost/boost/libs/statechart/test/Jamfile,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- Jamfile     5 Jun 2006 18:51:21 -0000       1.21
+++ Jamfile     16 Jul 2006 10:24:33 -0000      1.22
@@ -145,7 +145,7 @@
     [ statechart-compile-fail-variants InconsistentHistoryTest6 ]
     [ statechart-compile-fail-variants InconsistentHistoryTest7 ]
     [ statechart-compile-fail-variants InconsistentHistoryTest8 ]
-    [ statechart-compile-fail-variants UnsupportedDeepHistoryTest ]
+    [ statechart-compile-fail-variants UnsuppDeepHistoryTest ]
     [ statechart-st-run-variants StateCastTest ]
     [ statechart-st-run-variants TypeInfoTest ]
     [ statechart-st-run-variants StateIterationTest ]

Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/libs/statechart/test/Jamfile.v2,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Jamfile.v2  5 Jun 2006 18:51:21 -0000       1.6
+++ Jamfile.v2  16 Jul 2006 10:24:33 -0000      1.7
@@ -134,7 +134,7 @@
     [ statechart-compile-fail-variants InconsistentHistoryTest6 ]
     [ statechart-compile-fail-variants InconsistentHistoryTest7 ]
     [ statechart-compile-fail-variants InconsistentHistoryTest8 ]
-    [ statechart-compile-fail-variants UnsupportedDeepHistoryTest ]
+    [ statechart-compile-fail-variants UnsuppDeepHistoryTest ]
     [ statechart-st-run-variants StateCastTest ]
     [ statechart-st-run-variants TypeInfoTest ]
     [ statechart-st-run-variants StateIterationTest ]

--- UnsupportedDeepHistoryTest.cpp DELETED ---

--- UnsupportedDeepHistoryTest.vcproj DELETED ---



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to