Sha256: 963e6c8bef812802d2b48c00a71b720b18ee7bd60e2e1f73c61812b20d0a20f7

Contents?: true

Size: 301 Bytes

Versions: 2

Compression:

Stored size: 301 Bytes

Contents

/*
 * wxConfig.cpp
 *
 *  Created on: 06.03.2012
 *      Author: hanmac
 */

#include "wxConfig.hpp"

VALUE rb_cWXConfig;


DLL_LOCAL void Init_WXConfig(VALUE rb_mWX)
{
#if wxUSE_CONFIG
	rb_cWXConfig = rb_define_class_under(rb_mWX,"Config",rb_cObject);
	registerInfo<wxConfig>(rb_cWXConfig);
#endif
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rwx-0.0.1.1.dev ext/wxConfig.cpp
rwx-0.0.1.dev ext/wxConfig.cpp