Click here to Skip to main content
15,910,210 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
Questionstd not recognized Pin
Anil_vvs5-Dec-06 23:12
Anil_vvs5-Dec-06 23:12 
AnswerRe: std not recognized Pin
Christian Graus5-Dec-06 23:23
protectorChristian Graus5-Dec-06 23:23 
GeneralRe: std not recognized Pin
Anil_vvs5-Dec-06 23:56
Anil_vvs5-Dec-06 23:56 
GeneralRe: std not recognized Pin
Nish Nishant6-Dec-06 5:00
sitebuilderNish Nishant6-Dec-06 5:00 
GeneralRe: std not recognized Pin
Christian Graus6-Dec-06 8:34
protectorChristian Graus6-Dec-06 8:34 
GeneralRe: std not recognized Pin
Anil_vvs6-Dec-06 17:18
Anil_vvs6-Dec-06 17:18 
GeneralRe: std not recognized Pin
Christian Graus6-Dec-06 17:27
protectorChristian Graus6-Dec-06 17:27 
GeneralRe: std not recognized Pin
Anil_vvs6-Dec-06 17:55
Anil_vvs6-Dec-06 17:55 
my .h file

#pragma once

using namespace std;
class Logger
{
public:
Logger(void);
~Logger(void);
private:
char *m_pFileName;
std::ofstream m_oStream;
public:
void LogMsg(char * functionName, char * condition);
};

cpp file

#include "StdAfx.h"
#include <iostream>
#include ".\logger.h"

Logger::Logger(void)
: m_pFileName(NULL)
{
m_pFileName = "E:\\projects\\something.log";
m_oStream.open(m_pFileName, std::ios_base::app);
}

Logger::~Logger(void)
{
}

void Logger::LogMsg(char * functionName, char * condition)
{
}

Thanks in Advance for any help....[Smile | :) ]
GeneralRe: std not recognized Pin
Christian Graus6-Dec-06 18:01
protectorChristian Graus6-Dec-06 18:01 
GeneralRe: std not recognized Pin
Anil_vvs6-Dec-06 18:52
Anil_vvs6-Dec-06 18:52 
QuestionHelp with converting GMT time to AEDT time in c++ Pin
dusty1435-Dec-06 17:49
dusty1435-Dec-06 17:49 
AnswerRe: Help with converting GMT time to AEDT time in c++ Pin
User 5838525-Dec-06 18:41
User 5838525-Dec-06 18:41 
Questionmemory & handle increase when using IXMLDOMDocument::load(), Pin
neerajkchauhan4-Dec-06 17:18
neerajkchauhan4-Dec-06 17:18 
AnswerRe: memory & handle increase when using IXMLDOMDocument::load(), Pin
George L. Jackson4-Dec-06 23:37
George L. Jackson4-Dec-06 23:37 
Questionundefined reference... [modified] Pin
thathvamsi4-Dec-06 16:03
thathvamsi4-Dec-06 16:03 
AnswerRe: undefined reference... Pin
Christian Graus4-Dec-06 17:46
protectorChristian Graus4-Dec-06 17:46 
GeneralRe: undefined reference... Pin
thathvamsi4-Dec-06 18:08
thathvamsi4-Dec-06 18:08 
AnswerRe: undefined reference... Pin
Pierre Leclercq5-Dec-06 2:11
Pierre Leclercq5-Dec-06 2:11 
QuestionIDE Code completion & templates Pin
User 5838524-Dec-06 13:19
User 5838524-Dec-06 13:19 
AnswerRe: IDE Code completion &amp; templates Pin
George L. Jackson4-Dec-06 14:39
George L. Jackson4-Dec-06 14:39 
GeneralRe: IDE Code completion & templates Pin
User 5838524-Dec-06 14:44
User 5838524-Dec-06 14:44 
GeneralRe: IDE Code completion & templates Pin
George L. Jackson4-Dec-06 14:54
George L. Jackson4-Dec-06 14:54 
GeneralRe: IDE Code completion & templates Pin
User 5838524-Dec-06 15:00
User 5838524-Dec-06 15:00 
GeneralRe: IDE Code completion &amp; templates Pin
George L. Jackson4-Dec-06 15:20
George L. Jackson4-Dec-06 15:20 
Questionmultiple dimensional vector array Pin
cy163@hotmail.com4-Dec-06 3:25
cy163@hotmail.com4-Dec-06 3:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.