Tagged Questions

An OOP technique where an object encapsulates (wraps) another object, hiding/protecting the object and controlling all access to it.

learn more… | top users | synonyms (1)

20
votes
11answers
18k views

What is a wrapper class?

What is a wrapper class? How are such classes useful?
17
votes
6answers
2k views

How to use C++ in Go?

In the new Go language, how do I call C++ code? In other words, how can I wrap my C++ classes and use them in Go?
13
votes
6answers
325 views

Lightweight wrapper - is this a common problem and if yes, what is its name?

I have to use a library that makes database calls which are not thread-safe. Also I occasionally have to load larger amounts of data in a background thread. It is hard to say which library functions ...
12
votes
1answer
238 views

C# .NET User Control inside native app. Resource chain problems

I am wrapping up an MFC extension DLL (MFCXDLL_2) to make its functionality available for C# programmers. The wrapper is a “Regular DLL using shared MFC DLL” with “Common Language Runtime Support ...
12
votes
5answers
1k views

Developing C wrapper API for Object-Oriented C++ code

I'm looking to develop a set of C APIs that will wrap around our existing C++ APIs to access our core logic (written in object-oriented C++). This will essentially be a glue API that allows our C++ ...
11
votes
5answers
880 views

Java Wrapper equality test

public class WrapperTest { public static void main(String[] args) { Integer i = 100; Integer j = 100; if(i == j) System.out.println("same"); else ...
10
votes
2answers
382 views

Calling C# method within a Java program

C# methods cannot be called directly in Java using JNI due to different reasons. So first we have to write a wrapper for C# using C++ then create the dll and use it through JNI in Java. I have ...
10
votes
10answers
2k views

Java vs. C++ for building a GUI which has a C++ backend

I currently have a C++ backend that I need to connect with a GUI, and since I've never built a GUI before, I was confused on where to start. I'm comfortable writing code in C++ and Java, so I'd ...
9
votes
7answers
269 views

Wrapper to FOR loops with progress bar

I like to use a progress bar while running slow for loops. This could be done easily with several helpers, but I do like the tkProgressBar from tcltk package. A small example: pb <- ...
8
votes
1answer
62 views

How to delete a file from php://temp wrapper

In PHP, I'm using an in-memory (or rather, temp in-memory) file to load an image from an external URL into a GD resource: $file = 'php://temp/img'; copy($uri, $file); $src_img = ...
8
votes
3answers
131 views

Widening and Boxing Java primitives

Widening and Boxing Java primitives. I know it is not possible to widen a wrapper class from one to another as they are not from the same inheritence tree. Why though is it not possible to widen a ...
8
votes
2answers
1k views

How to design a simple GLSL wrapper for shader use

UPDATE: Because I needed something right away, I've created a simple shader wrapper that does the sort of thing I need. You can find it here: ShaderManager on GitHub. Note that it's designed for ...
8
votes
1answer
523 views

Recent FFTW wrapper in Java

I'm seeking a minimal Java wrapper for a recent version of FFTW. The wrappers listed on the FFTW website are either out of date (jfftw-1.2.zip) or contain too much extra stuff (Shared Scientific ...
8
votes
2answers
221 views

What is the most complete mocking framework for HttpContext

I'm looking for as comprehensive as possible of a mock replacement and wrapper for the ASP.NET HttpContext in my applications. A comprehensive mock replacement could potentially increase the ...
8
votes
2answers
736 views

Acquire images from scanners from Powerbuilder

I am using EZTWAIN from a powerbuilder application to acquire images from an HP scanner. Recently I tried a Kodak model (i1120) and it seems that it is not supported. Specifically the application ...
8
votes
4answers
274 views

If class Number is abstract why I'm I allowed to write Number n = 5?

Number n = new Number(5) is illegal, but Number n = 5 isn't. Why?
8
votes
6answers
2k views

Generate C wrapper from C++?

I want to generate C wrappers from C++ libraries. There are tutorials on how to do it by hand: http://developers.sun.com/solaris/articles/mixing.html ...
7
votes
2answers
158 views

Specific local Dynamic in Grid

I would like to update specific parts of a Grid dynamically in different ways. Consider the following toy example: I have two rows: one must be updated one-by-one (a, b, c), as these symbols depend on ...
7
votes
2answers
316 views

Python wrapper to access Hg, Git and possibly Bazaar repositories?

I'm looking for a Python library that can do basic manipulation of repositories, but is independent of the backend version control system. By basic manipulation, I'm referring to: initialize a repo, ...
7
votes
1answer
690 views

How to cut/crop/trim a video in respect with time or percentage and save output in different file

Is there any tutorial or a c# library which which help me to accomplish the following 1) Chose a file to edit 2) Ask user to select cut/crop/trim method :- by time or by percentage 3) cut/crop/trim ...
7
votes
1answer
700 views

Wrapping an Unmanaged C++ Class Library with C++/CLI - Question 1 - Project/Code Organization

Note: This post represents Question #1 of my inquiry. The introduction block (all text until the numbers are reached) is repeated in both questions as it is background information that may be needed ...
7
votes
6answers
309 views

What exactly does comparing Integers with == do?

EDIT: OK, OK, I misread. I'm not comparing an int to an Integer. Duly noted. My SCJP book says: When == is used to compare a primitive to a wrapper, the wrapper will be unwrapped and the ...
7
votes
3answers
366 views

Game Engine: Write in C++ and expose to C# or write directly in C#?

I am doing a bit of research before I am going to write my own 2D (and maybe some 3D) game engine. I have made an engine before using C# and XNA but I want to go cross platform this time by making my ...
6
votes
5answers
139 views

Find an efficient way to integrate different language libraries into one project using Python as the “glue”

I am about to get involved in a NLP-related project and I need to use various libraries. Some are in java, others in C/C++ (for tasks that require more speed) and finally some are in Python. I was ...
6
votes
3answers
238 views

PHPUnit tests real example

I've created a mail wrapper class. I know that there are lots of libraries to send e-mails but i want to learn TDD... So, I've created some tests and i have some code. Now I can set the email address ...
6
votes
3answers
267 views

Question: How can I use delegates to pass methods in a thread wrapper class?

I'm currently self-teaching myself C# and I'm a bit new at programming so apologies in advance if this is covered in another topic (I tried searching). I've been trying to make a generic worker / ...
6
votes
3answers
789 views

How to wrap a function using varargin and varargout?

mini-example: function varargout = wrapper(varargin) varargout = someFunction(varargin); That's how I'd do it first. But for example if someFunction = ndgrid this yields a not defined for cell ...
6
votes
2answers
724 views

C# .net wrapper for c dll, specifically lglcd (g19 sdk)

Ok guys, this is making me crazy. I'm creating a port for a C lib in C# but I've a problem in using a bitmap (generated with gdi) with a byte array (required from the c lib) Here are is the code, ...
6
votes
6answers
881 views

Using Java to wrap over C++

I have a project written in C++ and I'm looking to write a Java GUI as an interface to it. The choice of Java is fixed so I'd need to learn how to be able to call the C++ code from Java. Rewriting the ...
6
votes
6answers
416 views

How to wrap a C library so that it can be called from a web service

We have a library with very complex logic implemented in C. It has a command line interface with not too complex string-based arguments. In order to access this, we would like to wrap the library so ...
6
votes
4answers
355 views

C++ standard/de facto STL algorithm wrappers

Are there any standard/de facto standard (boost) wrappers around standard algorithms which work with containers defining begin and end. Let me show you what I mean with the code: // instead of ...
6
votes
9answers
416 views

Automatically creating a wrapper to implement an interface

I have some classes that don't implement a certain interface but structurally comply to that interface. interface IFoo { void method(); } class Bar { // does not implement IFoo public void ...
5
votes
2answers
120 views

How to safely wrap `console.log`?

Suppose I want to include some calls to console.log for some legitimate production reason, say for something like a unit test harness. Obviously I would not want this to throw a premature exception if ...
5
votes
2answers
58 views

Non deducible context in template region

template<typename T> struct Wrap { Wrap(T *p) {} }; #ifdef TEMPLATE template<typename T> void foo (Wrap<T> t) {} // version-1 #else void foo (Wrap<int> p) {} // version-2 ...
5
votes
1answer
179 views

what's the overhead of passing python callback functions to Fortran subroutines?

I just wrapped a Fortran 90 subroutine to python using F2PY. The subtlety here is that the Fortran subroutine aslo takes a python call-back function as one of its arguments: SUBROUTINE f90foo(pyfunc, ...
5
votes
3answers
579 views

WinHttp Delphi wrapper

Please advise if there is a WinHTTP wrapper in Delphi XE In order of preference: a Delphi out of the box unit a third party open source pas file with ported entry routines a xxx_TLB.pas wrapper ...
5
votes
1answer
247 views

Having trouble wrapping functions in the linux kernel

I've written a LKM that implements Trusted Path Execution (TPE) into your kernel: https://github.com/cormander/tpe-lkm I run into an occasional kernel OOPS (describe at the end of this question) ...
5
votes
2answers
122 views

Wrapper for SQL queries

I have one idea to write library for .NET. This library will be object wrapper for SQL queries, this is not ORM, this is easy tool to avoid hardcode SQL in small projects. For example of using: var ...
5
votes
1answer
238 views

Resources for learning how to design good API wrappers in ruby

I'd like to learn how to design good API wrappers in ruby. I'm looking for: blog articles tutorials best code and library to learn from the code directly (well commented and designed) books ... ...
5
votes
1answer
301 views

.NET Library for Google Maps API support

I'm looking for a .NET library or wrapper for Google Maps, that contains all the types of responses as C# classes. I want to be able to do something like: var url = ...
5
votes
3answers
477 views

numpy.ndarray: converting to a “normal” class

[Python 3] I like ndarray but I find it annoying to use. Here's one problem I face. I want to write class Array that will inherit much of the functionality of ndarray, but has only one way to be ...
5
votes
3answers
2k views

C# VLC 1.1 Wrapper

Does anyone know about a C# VLC 1.1 Wrapper? I've found some wrappers for older versions of VLC (haven't tried them yet), but none for the new version. So if you know of any, please post them.
5
votes
2answers
181 views

Python API C++ : “Static variable” for a Type Object

I have a small question about static variable and TypeObjects. I use the API C to wrap a c++ object (let's call it Acpp) that has a static variable called x. Let's call my TypeObject A_Object : ...
5
votes
6answers
687 views

Writing a C++ wrapper for a C library

I have a legacy C library, written in an OO type form. Typical functions are like: LIB *lib_new(); void lib_free(LIB *lib); int lib_add_option(LIB *lib, int flags); void lib_change_name(LIB *lib, ...
5
votes
2answers
1k views

How to write a wrapper over functions and member functions that executes some code before and after the wrapped function?

I'm trying to write some wrapper class or function that allows me to execute some code before and after the wrapped function. float foo(int x, float y) { return x * y; } ...
5
votes
3answers
443 views

.NET wrapper for Windows API functionality

Does anyone know of a .NET managed wrapper around Windows API functionality that is not available in the .NET framework itself? Areas such as window creation and display styles, common UI control ...
5
votes
7answers
4k views

When to use wrapper class and primitive type

When i should go for wrapper class over primitive types? Or On what circumstance i should choose between wrapper / Primitive types?
5
votes
4answers
1k views

authorize.net C# wrappers/library

Are there any good libraries or wrappers for Authorize.net? The code samples available from their site seem a little ... raw. I'm looking for an easy to use, object oriented API that I can simply ...
5
votes
9answers
2k views

C++: Function wrapper that behaves just like the function itself

How can I write a wrapper that can wrap any function and can be called just like the function itself? The reason I need this: I want a Timer object that can wrap a function and behave just like the ...
5
votes
7answers
3k views

A C++ iterator adapter which wraps and hides an inner iterator and converts the iterated type

Having toyed with this I suspect it isn't remotely possible, but I thought I'd ask the experts. I have the following C++ code: class IInterface { virtual void SomeMethod() = 0; }; class Object ...

1 2 3 4 5 15