1
vote
1answer
12 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
154 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
0answers
64 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 …
5
votes
5answers
108 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
4answers
28 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
8answers
880 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 …
0
votes
3answers
154 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 …
1
vote
2answers
475 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
2answers
478 views
Using command-line argument for passing files to a program
How can I receive a file as a command-line argument?
1
vote
5answers
101 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():
…
0
votes
5answers
337 views
Passing variables in objective C
Normally i've been passing variable around in init methods, but I can't do that this time because I have a var in one ViewController class displayed using a tab bar and I need acce …
2
votes
3answers
120 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( …
2
votes
4answers
151 views
Querying by type in DB4O
How do you pass a class type into a function in C#?
As I am getting into db4o and C# I wrote the following function after reading the tutorials:
public static void PrintAllPi …
0
votes
2answers
334 views
Passing dynamically allocated integer arrays in C
Hello,
I read the example on "Passing multi-dimensional arrays in C" on this site.
It is a great example using char arrays, and I learned a lot from it. I would like to do the s …
1
vote
3answers
327 views
Splitting /proc/cmdline arguments with spaces
Most scripts that parse /proc/cmdline break it up into words and then filter out arguments with a case statement, example:
CMDLINE="quiet union=aufs wlan=FOO"
for x in $CMDLINE
do …
