userApp.hpp 421 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2022-04-06 08:46:22
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2022-04-06 08:47:24
  8. */
  9. #ifndef __USERAPP_HPP_
  10. #define __USERAPP_HPP_
  11. #include <iostream>
  12. using namespace std;
  13. namespace INS
  14. {
  15. class userApp
  16. {
  17. private:
  18. /* data */
  19. public:
  20. userApp(/* args */);
  21. ~userApp();
  22. };
  23. } // namespace INS
  24. #endif