array_fwd.hpp
Go to the documentation of this file.
00001 /* 00002 Copyright 2005-2008 Adobe Systems Incorporated 00003 Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt 00004 or a copy at http://stlab.adobe.com/licenses.html) 00005 */ 00006 00007 /*************************************************************************************************/ 00008 00009 #ifndef ADOBE_ARRAY_FWD_HPP 00010 #define ADOBE_ARRAY_FWD_HPP 00011 00012 #include <adobe/config.hpp> 00013 00014 #include <adobe/any_regular_fwd.hpp> 00015 #include <adobe/vector_fwd.hpp> 00016 00017 /*************************************************************************************************/ 00018 00019 namespace adobe { 00020 namespace version_1 { 00021 00022 /*************************************************************************************************/ 00023 00025 typedef vector<any_regular_t> array_t; 00026 00027 /*************************************************************************************************/ 00028 00029 } // namespace version_1 00030 00031 using version_1::array_t; 00032 00033 #if defined(ADOBE_NO_DOCUMENTATION) 00034 /* REVISIT (mmarcus) : doxygen doesn't seem to understand using 00035 declarartions. This is a doxygen only hack to make the typedef appear 00036 in the documentation 00037 */ 00039 typedef version_1::vector<any_regular_t> array_t; 00040 #endif 00041 00042 } // namespace adobe 00043 00044 /*************************************************************************************************/ 00045 00046 #endif |