MCPcopy Create free account
hub / github.com/HO-COOH/FastCopy / ICopyBase

Class ICopyBase

SpeedTest/ICopyBase.h:8–23  ·  view source on GitHub ↗

All test inherits this class

Source from the content-addressed store, hash-verified

6
7//All test inherits this class
8class ICopyBase
9{
10public:
11 /**
12 * The methods to be called to run the copy/move program or apis
13 *
14 * @param paths All the files to be copied or moved
15 * @return Whether the call is success
16 */
17 virtual bool Run(std::vector<TestOperation>const& paths) = 0;
18
19 /**
20 * Return the name/id of this implementation
21 */
22 virtual std::string GetName() const = 0;
23};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected