K
KevinSimonson
I've created the three files below and have gotten them into Visual
Studio 2010 (version 10.0.30319.1). I had a whole bunch of
compilation errors, but I've got them all fixed but two in "Bug.cpp".
I've embedded the error messages into the code with square brackets to
make it easier to see what the messages are referring to. What I'm
trying to do is get an example of a non-static function being called
every ten seconds. All this program does is write the contents of a
"Bug" object to a different file each time "problem()" is called.
This isn't the real software problem I'm working on; the one I'm
working on is much more complex. But the part I'm having trouble with
with the real software problem is this bit where a call to
"SetTimer()" needs to call a non-static method. Anybody have any idea
why this code won't compile for me?
Kevin S
---
BugMain.cpp------------------------------------------------------------------
// BugMain.cpp : Defines the entry point for the console application.
//
#include "Bug.h"
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
Bug bg = new Bug( 123, 456.789);
bg.runIt();
return 0;
}
---
Bug.h------------------------------------------------------------------------
#pragma once
class Bug
{
private:
int abc;
double def;
public:
Bug ( int ab, double de);
void runIt ();
void problem ();
static void* pObject;
};
---
Bug.cpp----------------------------------------------------------------------
#include "Bug.h"
#include <windows.h>
#include <stdio.h>
#include <fstream>
using namespace std;
char fileName[ 12];
Bug::Bug ( int ab
, double de)
{
abc = ab;
def = de;
strcpy( fileName, "Bug_000.Txt");
}
void CALLBACK repeatable ( HWND hwnt
, UINT uMsg
, UINT idEvent
, DWORD dwTime)
{
Bug* bg = (Bug *) pObject; [Error: identifier "pObject" is
undefined]
bg->problem();
}
void Bug::runIt ()
{
pObject = this;
SetTimer( NULL, 10000, repeatable); [Error: argument of type
"void (__stdc
} all *)(HWND hwnt, UINT uMsg,
UINT idEv
ent, DWORD dwTime)" is
incompatible wi
void Bug:roblem () th parameter of type "UINT"]
{
ofstream outFile( fileName);
outFile << "abc == " << abc << " and def == " << def << "." << endl;
outFile.close();
int dgt;
for (dgt = 6; 3 < dgt && fileName[ dgt] == '9'; dgt--)
{ fileName[ dgt] = '0';
}
if (3 < dgt)
{ fileName[ dgt]++;
}
}
Studio 2010 (version 10.0.30319.1). I had a whole bunch of
compilation errors, but I've got them all fixed but two in "Bug.cpp".
I've embedded the error messages into the code with square brackets to
make it easier to see what the messages are referring to. What I'm
trying to do is get an example of a non-static function being called
every ten seconds. All this program does is write the contents of a
"Bug" object to a different file each time "problem()" is called.
This isn't the real software problem I'm working on; the one I'm
working on is much more complex. But the part I'm having trouble with
with the real software problem is this bit where a call to
"SetTimer()" needs to call a non-static method. Anybody have any idea
why this code won't compile for me?
Kevin S
---
BugMain.cpp------------------------------------------------------------------
// BugMain.cpp : Defines the entry point for the console application.
//
#include "Bug.h"
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
Bug bg = new Bug( 123, 456.789);
bg.runIt();
return 0;
}
---
Bug.h------------------------------------------------------------------------
#pragma once
class Bug
{
private:
int abc;
double def;
public:
Bug ( int ab, double de);
void runIt ();
void problem ();
static void* pObject;
};
---
Bug.cpp----------------------------------------------------------------------
#include "Bug.h"
#include <windows.h>
#include <stdio.h>
#include <fstream>
using namespace std;
char fileName[ 12];
Bug::Bug ( int ab
, double de)
{
abc = ab;
def = de;
strcpy( fileName, "Bug_000.Txt");
}
void CALLBACK repeatable ( HWND hwnt
, UINT uMsg
, UINT idEvent
, DWORD dwTime)
{
Bug* bg = (Bug *) pObject; [Error: identifier "pObject" is
undefined]
bg->problem();
}
void Bug::runIt ()
{
pObject = this;
SetTimer( NULL, 10000, repeatable); [Error: argument of type
"void (__stdc
} all *)(HWND hwnt, UINT uMsg,
UINT idEv
ent, DWORD dwTime)" is
incompatible wi
void Bug:roblem () th parameter of type "UINT"]
{
ofstream outFile( fileName);
outFile << "abc == " << abc << " and def == " << def << "." << endl;
outFile.close();
int dgt;
for (dgt = 6; 3 < dgt && fileName[ dgt] == '9'; dgt--)
{ fileName[ dgt] = '0';
}
if (3 < dgt)
{ fileName[ dgt]++;
}
}