Sha256: 5ddc409163c57c00723f40667032a72cec1303b298843ee84b8826c7a0c3f609

Contents?: true

Size: 716 Bytes

Versions: 2

Compression:

Stored size: 716 Bytes

Contents

/*
 * wxPoint.hpp
 *
 *  Created on: 21.04.2012
 *      Author: hanmac
 */

#ifndef WXPOINT_HPP_
#define WXPOINT_HPP_

#include "main.hpp"

extern VALUE rb_cWXPoint;
DLL_LOCAL void Init_WXPoint(VALUE rb_mWX);

extern ID rwxID_x,rwxID_y;

template <>
VALUE wrap< wxRealPoint >(wxRealPoint *point );

template <>
bool is_wrapable< wxRealPoint >(const VALUE &vpoint);

template <>
wxRealPoint unwrap< wxRealPoint >(const VALUE &vpoint);

template <>
VALUE wrap< wxPoint >(const wxPoint &point );

template <>
bool is_wrapable< wxPoint >(const VALUE &vpoint);

template <>
wxPoint unwrap< wxPoint >(const VALUE &vpoint);

template <>
wxPointList* unwrap< wxPointList* >(const VALUE &vpoint);


#endif /* WXPOINT_HPP_ */

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rwx-0.0.1.1.dev ext/wxPoint.hpp
rwx-0.0.1.dev ext/wxPoint.hpp