mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 05:33:36 +00:00

Introduce project skeleton such as build envrionment and interfaces to build up code further cooperatively. Change-Id: Ie9ac38991f609d33637283134906d7cc3f2ac19e
12 lines
147 B
C++
12 lines
147 B
C++
#include <tizenvg.h>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
tizenvg::Engine::init();
|
|
|
|
//...
|
|
|
|
tizenvg::Engine::term();
|
|
}
|