2019-10-22 00:24:54 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include "AdapterPattern.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
Controller *controller = new Adapter();
|
|
|
|
controller->pathPlanning();
|
|
|
|
|
|
|
|
system("pause");
|
2020-11-29 05:40:29 +00:00
|
|
|
delete controller;
|
2019-10-22 00:24:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|