123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_MSM_BACK_COPY_POLICIES_H
- #define BOOST_MSM_BACK_COPY_POLICIES_H
- #include <boost/noncopyable.hpp>
- namespace boost { namespace msm { namespace back
- {
-
- struct NoCopy : ::boost::noncopyable
- {
- };
-
-
- struct DeepCopy
- {
- };
- } } }
- #endif
|