You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							319 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							319 B
						
					
					
				#include <QApplication>
 | 
						|
 | 
						|
#include "selfdrive/ui/replay/replay.h"
 | 
						|
 | 
						|
int main(int argc, char *argv[]){
 | 
						|
  QApplication a(argc, argv);
 | 
						|
 | 
						|
  QString route(argv[1]);
 | 
						|
  if (route == "") {
 | 
						|
    printf("Usage: ./replay \"route\"\n");
 | 
						|
    return 1;
 | 
						|
  }
 | 
						|
 | 
						|
  Replay *replay = new Replay(route);
 | 
						|
  replay->start();
 | 
						|
 | 
						|
  return a.exec();
 | 
						|
}
 | 
						|
 |