Research portable Memory game | Исследовать портируемую игру Память
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
209B

  1. #include <string>
  2. #include <vector>
  3. #ifndef ctx_HEADER
  4. #define ctx_HEADER
  5. template <class T> class ctx_Controller {
  6. T context;
  7. ctx_Controller(const T &c) {
  8. context = c;
  9. }
  10. };
  11. #endif // ctx_HEADER