| 10 | class BCDCommon { |
| 11 | public: |
| 12 | BCDCommon(const BCDConfig& conf) : bcd_conf_(conf) { |
| 13 | if (!bcd_conf_.has_local_cache()) { |
| 14 | bcd_conf_.mutable_local_cache()->add_file("/tmp/bcd_"); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | virtual ~BCDCommon() { } |
| 19 | protected: |
nothing calls this directly
no test coverage detected