| 34 | } |
| 35 | |
| 36 | OriginCMem::OriginCMem() |
| 37 | { |
| 38 | size_t maxMem = 29; |
| 39 | for (auto i = 0U; i < maxMem; ++i) |
| 40 | { |
| 41 | auto _New_CBit = |
| 42 | CBitFactory::GetFactoryInstance(). |
| 43 | CreateCBitFromName("c"+obj2str(i)); |
| 44 | vecBit.push_back(_New_CBit); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | size_t OriginCMem::get_capacity() |
| 49 | { |
nothing calls this directly
no test coverage detected