1 //*****************************************************************************
2 //:
3 // \file
4 // \brief Smart pointer on a vtol_one_chain
5 //*****************************************************************************
6 #ifndef vtol_one_chain_sptr_h
7 #define vtol_one_chain_sptr_h
8 
9 class vtol_one_chain;
10 #include <vbl/vbl_smart_ptr.h>
11 typedef vbl_smart_ptr<vtol_one_chain> vtol_one_chain_sptr;
12 
13 #endif // vtol_one_chain_sptr_h
14