2016-11-18 00:40:14 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 Peter Repukat - FlatspotSoftware
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
2016-11-26 21:57:32 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2016-11-18 00:40:14 +00:00
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2016-11-18 00:22:07 +00:00
|
|
|
#include "SteamTargetRenderer.h"
|
|
|
|
#include <QtCore/QCoreApplication>
|
2016-11-16 13:31:35 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2017-01-25 16:54:08 +00:00
|
|
|
SteamTargetRenderer renderer(argc, argv);
|
2016-11-18 00:22:07 +00:00
|
|
|
renderer.run();
|
2017-01-25 16:54:08 +00:00
|
|
|
return renderer.exec();
|
2016-11-16 13:31:35 +00:00
|
|
|
}
|
2016-11-18 00:22:07 +00:00
|
|
|
|