/* * @Description: * @Version: 1.0 * @Autor: lishengyin * @Date: 2022-04-06 08:46:22 * @LastEditors: lishengyin * @LastEditTime: 2022-04-06 08:47:24 */ #ifndef __USERAPP_HPP_ #define __USERAPP_HPP_ #include using namespace std; namespace INS { class userApp { private: /* data */ public: userApp(/* args */); ~userApp(); }; } // namespace INS #endif