19 lines
199 B
C++
19 lines
199 B
C++
#ifndef CABLETESTENGINE_H
|
|
#define CABLETESTENGINE_H
|
|
#include "Cable.h"
|
|
|
|
class CCableTestEngine
|
|
{
|
|
public:
|
|
CCableTestEngine();
|
|
|
|
private:
|
|
|
|
CCable *mTestCable;
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif // CABLETESTENGINE_H
|