0
votes
2answers
171 views
how do I reference an object, add a tween to it and put this in an Eventlistener in AS3?
Hello,
I'm having quite some trouble to try and get an app I wrote in AS2 to AS3. The reason I need to go to AS3 is something icky, so I won't go into detail about it.
I've got 90% of the application …
3
votes
2answers
49 views
How do I call a function name that is stored in a hash in Perl?
I'm sure this is covered in the documentation somewhere but I have been unable to find it... I'm looking for the syntactic sugar that will make it possible to call a method on a class whose name is …
2
votes
2answers
47 views
C#: Wrapping one Enum inside another (ie. mirroring another enum/copying it…)
Here's my problem: I have an object that's referencing a DLL. I would like other objects to reference my object, without having to also include a reference to the DLL itself.
This is fine for the …
1
vote
4answers
385 views
Add Non-GAC reference to project
Every time I add a reference to a web project in visual studio 2008 that is in my GAC, it adds the reference as a GAC reference and doesn't copy the file to my bin directory. But for deployment …
0
votes
4answers
136 views
C++ pass pointer by reference and assign default value
hi!
I would like to pass a pointer by reference to a function, such that i can actually change the address the passed pointer is pointing to and i'd like to assign this argument a default value.
…
1
vote
5answers
120 views
Passing pointer argument by reference under C?
#include <stdio.h>
#include <stdlib.h>
void
getstr(char *&retstr)
{
char *tmp = (char *)malloc(25);
strcpy(tmp, "hello,world");
retstr = tmp;
}
int
main(void)
{
char *retstr;
…
1
vote
2answers
49 views
DSP Algorithms Book
I'm looking for a book similar to "Introduction to Algorithms" by Thomas Cormen geared towards DSP algorithms. Is there anything as thorough as Cormen on the DSP market?
EDIT
I should say I'm …
1
vote
4answers
24 views
Loosely-coupled, non-referenced assembly - how to make sure it’s in the \bin\Debug folder of the exe project for debugging?
I'm building a loosely-coupled app, where the main exe project only contains references to an assembly with interfaces. The concrete implementations of those interfaces are in assemblies that are …
1
vote
3answers
43 views
Cant add static lib
Hello I am trying to build a DLL and it needs to reference a library namely libeay32.dll from the openssl package. I cant seem to add it as a reference under the Property Pages->Common Properties->Add …
0
votes
3answers
22 views
How should a mobile project reference/use classes in the full .net framework?
Our team is developing a framework. In a different solution, we have a mobile project (along with other "normal" .NET projects). That mobile project would benefit from using some of the code in the …
1
vote
7answers
115 views
Looking for book on Bash scripting
I'd like to brush up on my knowledge of Shell scripting with Bash for a job interview Monday.
What would the preferred book be for someone with an existing knowledge looking to review the topic?
2
votes
2answers
101 views
How do I take a reference to an array slice in Perl?
How would you take a reference to an array slice such that when you modify elements of the slice reference, the original array is modified?
The following code works due to @_ aliasing magic, but …
1
vote
2answers
42 views
Reference and Overwriting
I have:
class A{
public $name = 'A';
public $B;
public function B_into_A($b)
{
$this->B = $b;
}
}
class B{
public $name = 'B';
public $A;
public …
1
vote
2answers
109 views
What and how much overheads happen when I use a Reference class?
I saw there is a daemon thread running whenever we create a referenced object using any Reference class like
WeakReference,
FinalReference,
SoftReference,
PhantomReference,
Referemce
And …
8
votes
10answers
477 views
non-const reference to temporary object
Why is it not allowed to get non-const reference to a temporary object,
which function getx() returns? Clearly, this is prohibited by C++ Standard
but I am interested in the purpose of such …
