wrapper Questions

2

I am currently working on a small wrapper class for boost thread but I dont really get how the sleep function works, this is what I have got so far: BaseThread::BaseThread(){ thread = boost::thre...
Prayerful asked 29/12, 2009 at 11:29

1

Solved

Any helper class anywhere which wrapps kernel32 APIs, with all functions-methods and structures? Or any wrapper generator? I want ALL methods of kernel32.dll in C# like this: [DllImport("kernel3...
Millstream asked 21/12, 2009 at 21:47

4

Solved

Number n = new Number(5) is illegal, but Number n = 5 isn't. Why?
Souterrain asked 16/12, 2009 at 16:18

8

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 meth...
Derose asked 17/12, 2009 at 8:23

4

Solved

I have an interactive program that runs stdin and stdout. I need to create wrapper that will send X to it's stdin, check that it prints Y and then redirects wrapper's stdin and stdout to program's ...
Ashbaugh asked 11/12, 2009 at 20:52

3

Solved

My program writes to a log and to stdout. Every message, however, has a certain priority and the user specifies in Preferences which priorities go to which stream (log or stdout). unsigned short ...
Joycelynjoye asked 4/10, 2009 at 13:7

3

Solved

I am trying to write a wrapper shell script that caches information every time a command is called. It only needs to store the first non-option argument. For example, in $ mycommand -o option1 -f ...
Gifted asked 25/9, 2009 at 2:18

3

Solved

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 s...
Egan asked 4/9, 2009 at 2:20

3

Solved

I'm building a small Stack Overflow application, but to collect information from Stack Overflow about a user I need to know their UserID. I would like the user to be able to enter their display nam...
Bondon asked 19/9, 2009 at 5:26

5

Solved

I have to deploy some Web Services on a server that only supports the Java ones, but some of them will be done using perl or python. I want to know if is possible to develop a Java wrapper to call ...
Pizarro asked 29/7, 2009 at 16:53

4

I'm basically looking to generate a wrapper for a generic C function without having to manually specify the types. So I have a callback with a fixed prototype but I'm going to need to do some speci...
Zooid asked 15/7, 2009 at 18:17

4

Solved

I am using VMware Workstation 6.5 on Windows Vista x64. I would like to automate some of the VM management tasks. I know that there is a COM API (http://www.vmware.com/support/developer/vix-api/) a...
Flatfoot asked 17/12, 2008 at 23:50

3

Solved

In my other question, I've been trying to find someone who knows where to find free open source OCR library for C#. However, it seems there is only C++ library and obviously, C++ is not C#. One of...
Tamarah asked 14/4, 2009 at 21:58

7

Solved

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 ...
Marylinmarylinda asked 22/1, 2009 at 21:17

5

Solved

public class WrapperTest { public static void main(String[] args) { Integer i = 100; Integer j = 100; if(i == j) System.out.println("same"); else System.out.println("not same"); } } ...
Ascent asked 19/1, 2009 at 5:5

4

Solved

I'm just curious if any project exists that attempts to group all (or most) of PHP's built-in functions into a more object-oriented class hierarchy. For example, grouping all the string functions i...
Milton asked 15/9, 2008 at 1:56

© 2022 - 2024 — McMap. All rights reserved.