0
votes
1answer
41 views
passing primitive or struct type as function argument
I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs loo …
1
vote
1answer
37 views
Execute method with arguments through action mapping in struts 2
How would I execute a method with an argument in my model based on the URL? Ie, http://server/MyAction_Arg.action maps to MyClass.MyMethod(Arg)? I tried this:
<action name="My …
1
vote
2answers
105 views
Passing a touch event to all subviews of a View Controller
I have a view controller which creates multiple subviews on top of it. All subviews and the view controller accept touches. How can i communicate the touch point information to a …
1
vote
4answers
91 views
Passing parameters dynamically to variadic functions
Hi there.
I was wondering if there was any way to pass parameters dynamically to variadic functions. i.e. If I have a function
int some_function (int a, int b, ...){/*blah*/}
a …
1
vote
1answer
26 views
Create a Mac Application Installer and Passing Arguments on Launch
Couple questions on creating a mac installer.
1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?
2) When we normally launch the execut …
0
votes
5answers
162 views
C Variable Scope Specific Question
Here is a particular scenario that I have been unclear about (in terms of scope) for a long time.
consider the code
#include <stdio.h>
typedef struct _t_t{
int x;
int y …
0
votes
4answers
34 views
Passing variables from main form to input form
Hi
I have a simple question. I have a main form, and then a startup form from where I can select a new 3D model to generate. When selecting a new 3D model from the startup form, I …
5
votes
5answers
109 views
Hashes vs. Multiple Params?
It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.
My question is - when do you use parameters for yo …
0
votes
3answers
161 views
How Do I capture a variable (C#)
How Do I capture a variable?
Alternatively, can I store a reference to an object reference?
Normally, a method can alter a variable outside of it using ref keyword.
void Foo(ref …
5
votes
8answers
916 views
How do I pass a hash to a function in Perl?
I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with fu …
1
vote
5answers
102 views
defining functions in decorator
Why does this not work? How can I make it work? That is, how can I make gu accessible inside my decorated function?
def decorate(f):
def new_f():
def gu():
…
2
votes
3answers
139 views
Error C2228 when constructing boost::function object in constructor argument list
The code below does not compile in Visual C++ 2005.
class SomeClass {
public: boost::function<void()> func;
SomeClass(boost::function<void()> &func): func( …
1
vote
2answers
517 views
Pass and access structures using objective-c
I want to know how to pass structures to another function and subsequently access that structure in the called function. I'm developing for the iPhone and the reason I'm using stru …
2
votes
1answer
135 views
Prolog ECLiPSe - how to implement yield method?
i'm using ECLiPSe programming logic system.
i want to implement the yield method for passing the values from prolog to C/C++.
Has anyone implemented it?
Are there any other ways …
2
votes
2answers
521 views
Using command-line argument for passing files to a program
How can I receive a file as a command-line argument?
