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

Managed C++/CLI

 
AnswerRe: Convert ASCII to HEX Pin
RichardS17-Sep-05 16:57
RichardS17-Sep-05 16:57 
GeneralRe: Convert ASCII to HEX Pin
Johann Gerell17-Sep-05 23:13
Johann Gerell17-Sep-05 23:13 
GeneralRe: Convert ASCII to HEX Pin
RichardS18-Sep-05 5:22
RichardS18-Sep-05 5:22 
GeneralRe: Convert ASCII to HEX Pin
Johann Gerell18-Sep-05 6:22
Johann Gerell18-Sep-05 6:22 
QuestionC++ PROJECT HELP!!!! Pin
da_comp_learner15-Sep-05 19:25
da_comp_learner15-Sep-05 19:25 
AnswerRe: C++ PROJECT HELP!!!! Pin
Saksida Bojan16-Sep-05 2:27
Saksida Bojan16-Sep-05 2:27 
Questionwhat is the problem? Pin
mcnu15-Sep-05 16:20
mcnu15-Sep-05 16:20 
QuestionGraphic in linux Pin
Ta Xuan Hung15-Sep-05 15:19
Ta Xuan Hung15-Sep-05 15:19 
Hi everybody!
I am trying to make a graphic application in linux.In the beginning of my .cpp file, I have:



#include "matrix.h"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <math.h>
#include "/home/hungnv/Tools/Rand.h"
#include "/home/hungnv/Tools/nrutil.c"
#include "/home/hungnv/Tools/nrutil.h"
#include "/home/hungnv/Tools/XRSver1.h"


#ifndef _NO_NAMESPACE
using namespace std;
using namespace math;
#define STD std
#else
#define STD
#endif

#ifndef _NO_TEMPLATE
typedef matrix<double> Matrix;
#else
typedef matrix Matrix;
#endif

#ifndef _NO_EXCEPTION
# define TRYBEGIN() try {
# define CATCHERROR() } catch (const STD::exception& e) { \
char Error[1000];\
sprintf(Error,"Error: %s\n",e.what());\
if(flog != NULL){fprintf(flog,Error);} }
#else
# define TRYBEGIN()
# define CATCHERROR()
#endif



when I compiled by using this command: gcc -O -o xxx xxx.cpp -L/usr/X11R6/lib -lm -lX11 -I/usr/X11R6/include

and some errors occured. It could not recognize "Matrix".

Please help me to fix this problem.
Thanks!

h
AnswerRe: Graphic in linux Pin
Christian Graus15-Sep-05 15:38
protectorChristian Graus15-Sep-05 15:38 
AnswerRe: Graphic in linux Pin
Christian Graus15-Sep-05 15:51
protectorChristian Graus15-Sep-05 15:51 
Questionchar array structures Pin
charstock15-Sep-05 14:58
charstock15-Sep-05 14:58 
AnswerRe: char array structures Pin
Christian Graus15-Sep-05 15:36
protectorChristian Graus15-Sep-05 15:36 
GeneralRe: char array structures Pin
charstock16-Sep-05 3:00
charstock16-Sep-05 3:00 
GeneralRe: char array structures Pin
Achim Klein17-Sep-05 16:43
Achim Klein17-Sep-05 16:43 
AnswerRe: char array structures Pin
Johann Gerell17-Sep-05 23:25
Johann Gerell17-Sep-05 23:25 
Questiondrawing tools problem using mfc.net Pin
maktamcun14-Sep-05 22:59
maktamcun14-Sep-05 22:59 
AnswerRe: drawing tools problem using mfc.net Pin
toxcct15-Sep-05 3:17
toxcct15-Sep-05 3:17 
GeneralRe: drawing tools problem using mfc.net Pin
Judah Gabriel Himango16-Sep-05 8:21
sponsorJudah Gabriel Himango16-Sep-05 8:21 
AnswerRe: drawing tools problem using mfc.net Pin
Christian Graus15-Sep-05 11:32
protectorChristian Graus15-Sep-05 11:32 
GeneralRe: drawing tools problem using mfc.net Pin
maktamcun16-Sep-05 16:22
maktamcun16-Sep-05 16:22 
GeneralRe: drawing tools problem using mfc.net Pin
Christian Graus18-Sep-05 11:02
protectorChristian Graus18-Sep-05 11:02 
Questionoperator '*' Pin
LiYS14-Sep-05 22:26
LiYS14-Sep-05 22:26 
AnswerRe: operator '*' Pin
prasad_som14-Sep-05 23:18
prasad_som14-Sep-05 23:18 
GeneralRe: operator '*' Pin
LiYS14-Sep-05 23:50
LiYS14-Sep-05 23:50 
GeneralRe: operator '*' Pin
prasad_som15-Sep-05 0:19
prasad_som15-Sep-05 0:19 

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.