Search:

Type: Posts; User: paulpars

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    915

    I don't have it declared in a header file, it's...

    I don't have it declared in a header file, it's in my main cpp file...
  2. Replies
    5
    Views
    915

    linking problem

    I am getting the following errors when trying to compile my code:

    DLLMain.obj : error LNK2001: unresolved external symbol "class BMLClient netClient" (?netClient@@3VBMLClient@@A)...
  3. Replies
    19
    Views
    2,137

    ok I found this in osg:: Drawable: ...

    ok I found this in osg:: Drawable:




    /** draw directly ignoring an OpenGL display list which could be attached.
    * This is the internal draw method which does the drawing...
  4. Replies
    19
    Views
    2,137

    ok i dont seem to see any function declarations...

    ok i dont seem to see any function declarations with that sort of format. And no, this isn't my code, I'm just trying to change a few things with my minimal c++ knowledge. The only thing I wrote was...
  5. Replies
    19
    Views
    2,137

    i'm not really sure what a pure virtual function...

    i'm not really sure what a pure virtual function is...how would i know?
  6. Replies
    19
    Views
    2,137

    hmmm yea that's the first thing i tried but it's...

    hmmm yea that's the first thing i tried but it's giving me more errors in this class:



    class BMLDrawable: public osg::Drawable {
    public:
    BMLDrawable();
    virtual ~BMLDrawable();

    virtual...
  7. Replies
    19
    Views
    2,137

    ok maybe this is stupid but i'm still not really...

    ok maybe this is stupid but i'm still not really sure how to fix this
  8. Replies
    19
    Views
    2,137

    yup it's a const....here it is: void...

    yup it's a const....here it is:



    void BMLDrawable::drawImplementation (osg::State& state) const
    {
    if (!netClient.isConnected()) return;

    nMarkerCount = netClient.GetMarkerCount();
  9. Replies
    19
    Views
    2,137

    ok hopefully this is the one #pragma once...

    ok hopefully this is the one



    #pragma once
    #include <winsock2.h>
    #include "Vector3.h"

    class BMLClient
    {
  10. Replies
    19
    Views
    2,137

    netClient is declared as: protected:...

    netClient is declared as:



    protected:
    BMLClient netClient;


    in this class:
  11. Replies
    19
    Views
    2,137

    error with function

    Hi,

    I am trying to write a function but keep getting an error when I try to build. I'm not very experienced with c++ so I can't really figure out what the error means. The funcion is called like...
  12. trying to figure out someone's code for a plugin

    Hi everyone,

    I'm fairly new to C++ programming and I need to try and figure out a bunch of code that someone who worked here previously wrote. Right now I am trying to figure out this one function...
Results 1 to 12 of 12