Tagged Questions
4
votes
2answers
2k views
How to overload the indirection operator? (C++)
I'm trying to create an iterator class as a member-class for a list class, and am trying to overload the indirection operator (*) to access the list it's pointing to:
template<class T>
T ...
2
votes
3answers
93 views
Overloading the indirection operator in c++
my problem is a simple one. I have a class template that holds a pointer to a dynamically allocated type. I want to overload the indirection operator so that referring to the class template instance ...
1
vote
4answers
285 views
TOUGH: Dealing with deeply nested pointers in C++
I define this structure:
struct s_molecule
{
std::string res_name;
std::vector<t_particle> my_particles;
std::vector<t_bond> my_bonds;
std::vector<t_angle> my_angles;
...
1
vote
2answers
175 views
Include indirection on Visual C++
Let's say we have an application that will need Boost to compile. Boost being an external library, updated regularly, and our application having multiple binaries and multiple versions ("multiple" as ...
0
votes
2answers
68 views
C++ Indirection in accessing members from another member
Given the following example code:
class Room {
Room() : switch(*this) { }
Lamp lamp;
Switch switch;
void TurnOn() { lamp.TurnOn(); }
}
class Switch {
Switch(Room& room) : ...
0
votes
2answers
132 views
Invalid Indirection in C++
This is my program. I dont know what to do next because I dont know what is invalid indirection. The error is found from line 46 to 52.
#include<iostream.h>
#include<conio.h>
...
0
votes
6answers
231 views
Accessing variables from a struct
How can we access variables of a structure? I have a struct:
typedef struct {
unsigned short a;
unsigned shout b;
} Display;
and in my other class I have a method:
int NewMethod(Display ...
-1
votes
4answers
170 views
Weird Pointer issue in C++
I'm running into a VERY frustrating pointer issue. I previously posted here:
http://stackoverflow.com/questions/3114997/tough-dealing-with-deeply-nested-pointers-in-c
But that post got overly long ...