An OOP technique where an object encapsulates (wraps) another object, hiding/protecting the object and controlling all access to it.
1
vote
0answers
17 views
Best way to write C ++/CLI nested object accessors
Here is the situation:
I have an Unmanaged library Written in C/C++ and I would like to access those functions and structures in the CLR, but I am having trouble with writing basic accessors for the ...
2
votes
1answer
18 views
Setting an Item in nested dictionary with __setitem__
Here's what I did, trying to create a wrapper for a dict-like database, among other functions:
class database(object):
def __init__(self, name):
self.name = name
...
0
votes
2answers
44 views
PHP: write in php://input
I would like to know how I could write something in "php://input".
Actually I would like to know if I can use this stream like a superglobal.
Example with $_POST
file1: $_POST['param'] = "test";
...
-2
votes
0answers
20 views
__declspec(dllexport) cannot be applied to a function with the __clrcall calling convention
I have created the wrapper for class library in C# and when I build the Wrapper then I get the following error as:
__declspec(dllexport) cannot be applied to a function with the __clrcall calling ...
0
votes
1answer
56 views
Wrapper cannot instantiate an abstract class
I have created the Wrapper for the class library in the C++ and when I built the wrapper I got the following error as
Wrapper cannot instantiate an abstract class.
Where in the Wrapper.cpp file,
...
0
votes
0answers
4 views
vftable : per-appdomain symbol should not be marked with __declspec(dllexport)
I have created the wrapper for class library in C#; but when I built the wrapper I get the following error as:
'const IWrapper::`vftable'' : per-appdomain symbol should not be marked with ...
0
votes
2answers
46 views
Include php file with html via js include
Ok so I am tasked to work with this third party vendor that shows movie times on their end. We have the chance to co-brand our site on their end, so in order to do that we need to create a wrapper of ...
0
votes
1answer
17 views
Create gradle wrapper using newest stable Gradle version
I want to create a wrapper, who finds the newest stable version and to use it.
If it is 1.5 to download it and use it , if it is 1.7, then to download it.
Now using code like this doesn't works.
task ...
0
votes
1answer
23 views
SQLite Compact framework
I have both PC and Mobile application using SQLite. I have installed and used dll version 1.0.66 and when I have update my dlls to 1.0.85 from ...
-1
votes
1answer
19 views
Java Service Wrapper GPL licence [closed]
I'm having a difficult time interpreting meanings of GPL/LGPL licences. I know there are plenty of topics available on this matter, but I need an advice.
I'm running my proprietary app as a ...
-1
votes
0answers
22 views
Java Service wrapper licence [closed]
I have 2 questions:
Is there an older version of Java Service Wrapper program which doesn't have a licence(GPL),i.e. it's copyfree? I want to use a java service wrapper program with my software, and ...
1
vote
2answers
68 views
Calling .NET dll from native C++
I have a problem calling a .NET dll (mclNET.dll) using my COM wrapper. This is a third part dll which I do not have source code of. Basically I want to use this mclNET.dll in my pure native C++ ...
0
votes
0answers
10 views
Height in wrapper div not adjusting after child element
I have a wrapper div with no height assigned and two nested divs inside it. The problem I'm encountering is that this wrapper div doesn't seem to be taking any height value from the elements in the ...
3
votes
3answers
82 views
How to wrap C 2D arrays (Foo**) in C++ code?
I use a C library which operates on 2D arrays in the form of Foo**. I use it inside C++ code, so I need some sort of wrapper. With 1D arrays it's straightforward because vector iterators are just ...
-1
votes
0answers
45 views
How to use manufacturer's .dll and .h files in Java?
I've been supplied with a .dll and .h header files and I was wondering how I could access the library with Java?
The library is .dll is a pure C library that implements functionality necessary to ...
0
votes
4answers
75 views
Div with text not stretching vertically inside wrapper
I have a wrapper with inside a header, a left column and the main content.
Outside the wrapper i got the footer.
My problem is that main content, if there's not enough text, doesn't stretch till the ...
0
votes
1answer
33 views
IE Cross Browser Button Issue
http://www.pcdconsultancy.co.uk/
Im currently debugging in IE a website, and trying to establish what is causing a button to float outside its wrapper
the code for my sidebar is :
<div ...
1
vote
2answers
44 views
Libraries which remove the need to create queries for MySQL?
I was looking for different ways of storing data and I think I will have to go with a database.
But what I always hate about databases is that it's totally not what I - as someone who wants to create ...
2
votes
1answer
44 views
Wrapper, Filter and Servlet
since I am new to Servlet programming, it is possible that I ask a basic question.
I am writing an application where a Filter gets the response from a servlet, and does some computation with it. I ...
0
votes
1answer
34 views
is there a way to collapse all the panels of Kendo Panelbar, on an action?
I am working on an app where i am adding panelbars (multiselection) using JSP Wrapper (which means no ID to each of the panels), and inside those have the grids.
The grids are storing data specific ...
1
vote
4answers
80 views
How to write a function wrapper for cout that allows for expressive syntax?
I'd like to wrap std::cout for formatting, like so:
mycout([what type?] x, [optional args]) {
... // do some formatting on x first
std::cout << x;
}
and still be able to use ...
1
vote
2answers
21 views
Is it possible to add wrapped numbers without boxing/unboxing?
I'm getting a Long value as a result of some method. Now, when I want to add 1 to that number, the compiler warns me about the value being boxed / unboxed to perform the sum.
public Long ...
0
votes
4answers
57 views
Loading PHP file into DIV via AJAX
Say I have an index.php that loads a page.php into the div of class 'wrapper'.
page.php in turn has its own links and I want it so that when you click on one of these links it loads the respective ...
0
votes
1answer
21 views
What are the best practices to do semver (semantic versioning) of a wrapper library?
I'm thinking of adopting semver for a wrapper of another library that also follows semver. Originally I thought I would just keep the version of the wrapper the same as the original library, as ...
0
votes
1answer
76 views
c++11 template specialisation wrapper
I want to do something like this in c++11 but i dunno how to do or what to google:
the goal of this is to emulate polymorphism on return type here is a sample of code to explain what I want to do
...
1
vote
0answers
53 views
DLL wrapper method return delay
A company produces a device with an ethernet connector. I have one of their devices and they gave me a .lib file and some .h files so I can connect and communicate with their device. Works fine, I'm ...
3
votes
3answers
44 views
Difference in containsAll behavior for Integer and int arrays (Java)
Could someone possibly explain why the following:
Integer[] arr1 = {1,2,3,4,5};
Collection<?> numbers = Arrays.asList(new Integer[]{1,2,3});
...
0
votes
1answer
49 views
Is it possible to use Actions in an interface with add/remove?
Basically I'm trying to do this with Actions. I need to do something like that as opposed to a property because in at least one of the concretions an Action from another class is referenced- since you ...
2
votes
2answers
94 views
simple C++ wrapper for VHDL DFF code
I want to know, how can I write a C++ wrapper for a simple VHDL D-flip-flop code. The code can be as follows:
entity DFF is
Port ( D : in std_logic;
CLK : in std_logic := '0';
...
1
vote
1answer
89 views
Overhead of implicit object wrappers in Scala
Consider the following, very simple code :
class A(val a: String, val b: Int)
object Test {
implicit class wrap(obj: A) {
def fn = obj.a + obj.b
}
def main(args: Array[String]) =
...
0
votes
1answer
41 views
Generating metadata (“bindings” library) from C# DLL to Mono
I have a C# library project targeting Windows 8.
I'd like to build a tool that will act similarly to what tblimp does:
Go over all public types in the library (DLL).
Export these into a new ...
1
vote
2answers
59 views
C++ wrapper around 2 stringstreams (“dialogue” imitation)
I'm currently writing a wrapper for two streams. Finally, I would like to imitate a conversation with a Person to make my code clear&nice for using.
Declaration
class Person
{
public:
void ...
0
votes
0answers
15 views
Python wrapper for pppack?
I have searched the web extensively to find a wrapper of the pppack, especially the routines bsplvb.f and bsplvd.f, which return the basis of the b-splines and their derivatives. The only remotely ...
2
votes
0answers
44 views
Is switching within a log wrapper evil?
This is one of those questions that really wouldn't be worth anyone's time under normal circumstances but...
The built in Android logging framework uses seperate methods for log messages of different ...
2
votes
1answer
28 views
Casting and wrappers: some strange cases
Look at this... this evening I was trying to cast some primiteves to wrappers when I found that:
Integer i = (Integer)4;
Integer i = (Integer)4f; // Doesn't compile!
But if I rewrite the second ...
1
vote
1answer
63 views
Python SQLite Wrapper apsw-3.7.16.2 failed to install in mac os x (10.7.5)
Failed to install sqlite wrapper. Any help with installation will be really helpful.
Downloaded from
Installed sqlite3.version
'2.6.0'
Please find the error log below-
sudo python setup.py ...
-2
votes
0answers
54 views
Operator overloading in C++ with an Array wrapper [closed]
I have to write an Array wrapper class as part of an assignment.
Are all my prototypes and method signatures correct? The code compiles and looks good to me, but I'm not sure if there is anything I ...
0
votes
0answers
33 views
Android NDK and SQLite
I have a C++ implementation of sqlite3 I've used in an implementation for iphone, now i'm looking to implement it on my android app, but Android ndk does not provide access to sqlite api...
I found ...
0
votes
1answer
98 views
Why doesn't #include <Python.h> work?
I'm trying to run Python modules in C++ using "#include <Python.h>", however, after setting the "Additional Include Dependencies" of the project to "\include" I get the following error when ...
0
votes
1answer
22 views
Sequence of commands sent to a virtual machine using Vix fails sometimes
I made a function called listProcesses which calls the following Vix commands, in this order:
VixHost_Connect
VixHost_OpenVM
VixVM_LoginInGuest
VixVM_ListProcessesInGuest
VixVM_LogoutFromGuest
...
0
votes
2answers
100 views
Array Wrapper class in C++
So, I'm new to C++ (brand new), and as an assignment I have to write a class that acts as an array wrapper. Since I'm so new, I'm unsure whether my overloaded operators and such work, so if anyone ...
0
votes
1answer
53 views
issue with vtk python wrapping: can't import vtk in interpreter but can import in console
I compiled vtk with python wrapping and I can us it on the command line.
However, I am using eclipse IDE and want to use vtk but no matter what I do with my PYTHONPATH variable, I still get the ...
0
votes
3answers
22 views
CSS Issue - Wrapping
I'm trying to wrap my website differently so that the background is divided in 2. The gray part which is the main background but also a white part which is smaller and wrap the main-content.
...
0
votes
2answers
131 views
User detection in unity with kinect sdk
I'm using Unity 4.0.1 with kinect sdk 1.6 and developing with c# (imported kinect wrapper),
In the project when user goes out of range or one of bones can not be captured because of user not exactly ...
0
votes
0answers
41 views
Write a driver program implementing an ArrayList of CD objects
I have written the CDException class and the CD class, and now I'm trying to write a driver class to run the other classes. I have to
Read the artist name from user
Read the album name from user
...
0
votes
1answer
25 views
Different wrapper background-images wordpress custom template
I need to load different background-images for the wrapper of my custom template, i need one in index.php, archive.php and in single.php.
I tried making a different div, but it doesn't works because ...
4
votes
3answers
71 views
How to wrap text inside new div?
My HTML:
<div class="mainDiv">
<p>This is a paragraph</p>
<div class="innerDiv">This is a div</div>
This is what I want to wrap
</div>
What I want:
...
0
votes
1answer
57 views
Have a wrapper object expose its wrapee's properties
I'm currently trying to figure out how to have a wrapper class expose the properties of whatever it is wrapping without having to manually set them one by one in the wrapper class. I've been trying to ...
0
votes
0answers
24 views
Writing to websocket with BLWebSocketsServer
Not sure how many of you are familiar with BLWebsocketsServer. Available at: https://github.com/benlodotcom/BLWebSocketsServer.
It's an Objective-C wrapper for LibWebSocket (Written in C). It ...
0
votes
0answers
62 views
FreeLibrary() causing access violation error?
I have a wrapper class that wraps functions in an DLL. Naturally, I use LoadLibrary and FreeLibrary to load and free the DLL. When my wrapper management object gets created, it runs a Startup() ...





