xxxx.h
extern "C"
{
class TestCppSharp
{
public:
int order;
int bytes;
TestCppSharp();
};
class CppSharpOrder
{
public:
int OrderID = 1;
int CustomerID = 2;
int EmployeeID = 3;
int ShipVia = 4;
double Freight = 5;
};
class CppSharpDatabase
{
public:
std::list<CppSharpOrder> Orders;
};
}