mirror of https://github.com/dnomd343/klotski.git
Dnomd343
2 years ago
5 changed files with 59 additions and 5 deletions
@ -1,3 +1,3 @@ |
|||||
cmake_minimum_required(VERSION 3.0) |
cmake_minimum_required(VERSION 3.0) |
||||
|
|
||||
add_library(group OBJECT group.cc build_cases.cc block_num.cc) |
add_library(group OBJECT group.cc block_num.cc build_cases.cc group_info.cc) |
||||
|
@ -0,0 +1,26 @@ |
|||||
|
#include "group.h" |
||||
|
|
||||
|
namespace klotski { |
||||
|
|
||||
|
Group::group_info_t Group::group_info(const RawCode &raw_code) { |
||||
|
|
||||
|
// TODO: function body
|
||||
|
|
||||
|
return Group::group_info_t(); |
||||
|
} |
||||
|
|
||||
|
Group::group_info_t Group::group_info(const CommonCode &common_code) { |
||||
|
|
||||
|
// TODO: function body
|
||||
|
|
||||
|
return Group::group_info_t(); |
||||
|
} |
||||
|
|
||||
|
CommonCode Group::group_case(const Group::group_info_t &group_info) { |
||||
|
|
||||
|
// TODO: function body
|
||||
|
|
||||
|
return CommonCode(0); |
||||
|
} |
||||
|
|
||||
|
} // namespace klotski
|
Loading…
Reference in new issue