1234567891011121314151617181920212223242526272829303132 |
- /*
- * @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 <iostream>
- using namespace std;
- namespace INS
- {
- class userApp
- {
- private:
- /* data */
- public:
- userApp(/* args */);
- ~userApp();
- };
- } // namespace INS
- #endif
|