aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.cpp
blob: e0b25699f41b1a82e559191d10b3d1f667bcd372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string.h>

#include "cpptest.h"
#include "testtype.h"

TestType_ *newTestType()
{
    return new TestType();
}

int plainTestTypeN(PlainTestType_ *plain)
{
    return static_cast<PlainTestType *>(plain)->n;
}