| 263 | |
| 264 | |
| 265 | OriginCMemv2::OriginCMemv2(size_t maxMem) |
| 266 | { |
| 267 | for (auto i = 0U; i < maxMem; ++i) |
| 268 | { |
| 269 | auto _New_CBit = |
| 270 | CBitFactory::GetFactoryInstance(). |
| 271 | CreateCBitFromName("c" + obj2str(i)); |
| 272 | vecBit.push_back(_New_CBit); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | CBit* OriginCMemv2::Allocate_CBit() |
| 277 | { |
nothing calls this directly
no test coverage detected