選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Common.h 272B

12345678910111213141516171819
  1. //
  2. // Created by robin on 5/10/16.
  3. //
  4. #ifndef ROZITM_COMMON_H
  5. #define ROZITM_COMMON_H
  6. #include <string>
  7. class Common
  8. {
  9. public:
  10. template <class T>
  11. static void testStream(const T& data, const std::string& ref);
  12. };
  13. #include "Common.hxx"
  14. #endif //ROZITM_COMMON_H