okay - here are my buffer.h and buffer.cpp files
-- buffer.h --
#ifndef _BUFFER_H_
#define _BUFFER_H_
#include "typedefs.h"
// Place holder ONLY!!
#define BLOCK_SIZE 256
class Buffer
{
public:
Buffer();
Buffer(ULong fillPattern);
~Buffer();
private:
UInt length;
"Srini" <[EMAIL PROTECTED]> writes:
> raw_request.o(.text+0x29): In function
> `RawRequest::RawRequest[not-in-charge]()':
> : undefined reference to `Buffer::Buffer[in-charge]()'
> g++ tstrawreq.cpp buffer.o request.o raw_request.o configuration.o
Apparently buffer.o does not define 'Buffer
* Christian Christmann <[EMAIL PROTECTED]>
| What changed from g++ 2.9 to 3.x?
| Where can I get some information about that topic?
In the release notes accompanying gcc. Check the NEWS file in the gcc
distribution for more pointers.
R'
___
Help-gplus
Hello,
I searched thru this group for topics relevant to my issue. Found many
of them, but none of them seemed to solve my problem.
These are the errors I'm getting...
[snip]
raw_request.o(.text+0x29): In function
`RawRequest::RawRequest[not-in-charge]()':
: undefined reference to `Buffer::Buff