9 lines
137 B
C++
9 lines
137 B
C++
#ifndef _FC_ANY_HPP_
|
|
#define _FC_ANY_HPP_
|
|
#include <boost/any.hpp>
|
|
|
|
namespace fc {
|
|
typedef boost::any any;
|
|
}
|
|
|
|
#endif // _FC_ANY_HPP_
|