mirror of
https://github.com/stargieg/bacnet-stack
synced 2025-10-26 23:35:52 +08:00
48 lines
1.0 KiB
C++
48 lines
1.0 KiB
C++
/*****************************************************************************
|
|
*
|
|
* Atmel Corporation
|
|
*
|
|
* File : main.cpp
|
|
* Compiler : Dev-C++ 4.9.8.0 - http://bloodshed.net/dev/
|
|
* Revision : $Revision: 1163 $
|
|
* Date : $Date: 2006-08-02 15:38:16 +0200 (on, 02 aug 2006) $
|
|
* Updated by : $Author: ohlia $
|
|
*
|
|
* Support mail : avr@atmel.com
|
|
*
|
|
* Target platform : Win32
|
|
*
|
|
* AppNote : AVR911 - AVR Open-source Programmer
|
|
*
|
|
* Description : AVROSP main entry function.
|
|
*
|
|
*
|
|
****************************************************************************/
|
|
#include "JobInfo.hpp"
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
JobInfo j;
|
|
|
|
try
|
|
{
|
|
j.parseCommandline( argc, argv );
|
|
j.doJob();
|
|
}
|
|
catch( ErrorMsg * e )
|
|
{
|
|
cout << endl << "An error occurred:" << endl;
|
|
cout << " [" << e->What() << "]" << endl;
|
|
|
|
delete e;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|