1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) 2013-2014 Nintendo. All rights reserved. 4 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 11 *---------------------------------------------------------------------------*/ 12 13 #ifndef NN_EC_H_ 14 #define NN_EC_H_ 15 16 /*! 17 @defgroup nn_ec E-Commerce (EC) Library 18 19 @brief This library is for using e-commerce features. 20 21 Before you implement this library, we recommend that you read <i>Programming Manual: ECDK</i>. 22 23 @{ 24 25 @namespace nn::ec 26 27 @brief Namespace for the E-Commerce (EC) Library. 28 29 @namespace nn::ec::applet 30 31 @brief Namespace for the E-Commerce (EC) Library Applet API. 32 33 @defgroup nn_ec_api E-Commerce (EC) API 34 35 @brief A list of E-Commerce (EC) library API elements. 36 37 @defgroup nn_ec_class E-Commerce (EC) Classes 38 39 @brief A list of E-Commerce (EC) library classes. 40 41 @defgroup nn_ec_constant E-Commerce (EC) Constant Definitions 42 43 @brief The list of constant definitions in the E-Commerce (EC) library. 44 45 @defgroup nn_ec_result E-Commerce (EC) Results 46 47 @brief A list of <tt>Result</tt> codes used by the E-Commerce (EC) library. 48 49 @} 50 */ 51 52 #include <nn/ec/ec_Api.h> 53 #include <nn/ec/ec_ApiApplet.h> 54 #include <nn/ec/ec_ShoppingCart.h> 55 #include <nn/ec/ec_ShoppingCatalog.h> 56 #include <nn/ec/ec_DownloadCart.h> 57 #include <nn/ec/ec_DownloadCatalog.h> 58 59 #endif // NN_EC_H_ 60