User Profile

Collapse

Profile Sidebar

Collapse
lothas
lothas
Last Activity: Apr 23 '09, 11:31 AM
Joined: Apr 22 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • lothas
    replied to error C2679
    in C
    Exactly. I just managed to solve that today. The RobotJoint class had no problem in being copied as long as it had only floats and chars but when I added an object from Axes class it started complaining.
    I overloaded the = operator for the Axes class and now everything compiles properly.
    See more | Go to post

    Leave a comment:


  • lothas
    replied to error C2679
    in C
    Those lines would be in the C++ vector class...
    See more | Go to post

    Leave a comment:


  • lothas
    started a topic error C2679
    in C

    error C2679

    Hi, I'm working on a project to create a robotics simulation environment based on c++ and opengl. Right now I'm stuck trying to solve a compilation error that I'm getting while trying to push_back an object from one of my classes.
    Here's part of the code:
    Code:
    class RobotStruct  
    {
    public:
    	RobotStruct();
    	virtual ~RobotStruct();
    
    	void AddJoint(float Theta, float Alpha, float a, float d, int Type);
    ...
    See more | Go to post
No activity results to display
Show More
Working...