I have a class:
.h file
---
//rwfile.h
#ifndef _RWFILET_
#define _RWFILET_
#include <assert.h>
#include <stdio.h>
//#include <fstream.h>
#include "mystring.h"
template<class T> class RWFile
{
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10159594.html
Zones:
C++Date Answered: 05/11/1999 Grade: A Views: 0
I am trying to create a simple application which statically links to MFC (so it does not require mfc*.dll), and which also uses STL. With VS6 this was easy, but with VS.NET2003 I can't figure out ...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_21134881.htm...
Hi
I have problems compiling the following:
file CData.h
*****************************************
#ifndef _CData
#define _CData
class CData{
int i;
public:
CData();
~CData();
int give();
};
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10074644.html
Zones:
C++Date Answered: 08/24/1998 Grade: A Views: 0
I'm trying to write a patch and need to pass in a new version of an existing member function. I need the absolute address of the new member function. So far I've tried simply:
int address = Class...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10250250.html
Zones:
C++Date Answered: 01/11/2000 Grade: B Views: 0
I have a problem with the CString-Object.
First I don“t know, if the including of the cstring.h is enought to work with this class and
Second, when I want to make a new CString via
CString M...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_11193616.html
Zones:
C++Date Answered: 09/05/2000 Grade: B Views: 0
I have a problem with a typedef. This typedef works fine when the funtion Test is global but not when its within the class.
#H file
typedef void (*MYVOIDPOINTER)(int,int,int);
struct CrapyStr...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20247861.html
Zones:
C++Date Answered: 12/20/2001 Grade: A Views: 0
I have created a LIB file (SendMQ.lib) in Microsoft Visual C++ using the /MD option.
When I compile a program to link to it using a command line command as follows:
cl -MD -GX MQTesterBPO.cpp...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20429444.html
i have a template declared in a header file & the class implementation in another .cpp file. and a main.cpp file for the main() function. it compiles alright. but when i try to link, it gives error...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20691702.html
Zones:
C++Date Answered: 02/01/2004 Grade: A Views: 0
I'm a C++ newbie :-)
I have a book called "Visual C++ .NET Step by step", but unfortunately it's for 2003 so there are some minor differences. However, I don't think I should be having as much ...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_CPP/Q_21065477.html
I am learning MFC and I can not figure this out!!! I am creating a class and I was working on it yesturday. It worked fine yesturday. I just opened the files in Visual C++ and tried to compile i...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_20861868.htm...
Zones:
Windows MFCDate Answered: 01/24/2004 Grade: A Views: 0