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

Managed C++/CLI

 
AnswerRe: Updating my projects to retarget to .NET 4.6 Pin
John Schroedl20-Aug-15 7:29
professionalJohn Schroedl20-Aug-15 7:29 
Questionusing 'mkdir' for creating new directory Pin
Member 93502373-Aug-15 5:24
Member 93502373-Aug-15 5:24 
AnswerRe: using 'mkdir' for creating new directory Pin
Richard MacCutchan3-Aug-15 5:50
mveRichard MacCutchan3-Aug-15 5:50 
GeneralRe: using 'mkdir' for creating new directory Pin
Member 93502374-Aug-15 4:26
Member 93502374-Aug-15 4:26 
GeneralRe: using 'mkdir' for creating new directory Pin
Richard MacCutchan4-Aug-15 5:51
mveRichard MacCutchan4-Aug-15 5:51 
GeneralRe: using 'mkdir' for creating new directory Pin
PIEBALDconsult3-Aug-15 6:16
mvePIEBALDconsult3-Aug-15 6:16 
AnswerRe: using 'mkdir' for creating new directory Pin
Wes Aday3-Aug-15 9:26
professionalWes Aday3-Aug-15 9:26 
Questionadding pointer arrays Pin
Member 935023729-Jul-15 22:09
Member 935023729-Jul-15 22:09 
Hi Guys,

I have to make a single bool array combining four integer arrays as follows. I'm not supposed to do as
C++
connected = new bool [bl1 + bl2 + tr + ct];
because bl1, bl2,tr,ct are pointer to arrays. Can some one give a solution for this??

Here is my code:
C++
class Protocol{

    int baseline1[10],baseline2[10];
    int catcht[20];
    int training[120];

    bool *connected;

public: 
    Protocol(int[10],int[10],int[120],int[20]);  
};
C++
<h1>include "protocol.h"</h1>

<h1>include "math.h"</h1>

Protocol::Protocol(int bl1[10], int bl2[10], int tr[120], int ct[20]){

    int *baseline1 = bl1;
    int *baseline2 = bl2; 
    int *training  = tr;
    int *catcht    = ct;

    connected = new bool [bl1 + bl2 + tr + ct];

}

Thank you!
AnswerRe: adding pointer arrays Pin
Richard Andrew x6430-Jul-15 9:29
professionalRichard Andrew x6430-Jul-15 9:29 
AnswerRe: adding pointer arrays Pin
Richard MacCutchan30-Jul-15 21:26
mveRichard MacCutchan30-Jul-15 21:26 
GeneralRe: adding pointer arrays Pin
Member 935023730-Jul-15 21:51
Member 935023730-Jul-15 21:51 
GeneralRe: adding pointer arrays Pin
Richard MacCutchan30-Jul-15 22:16
mveRichard MacCutchan30-Jul-15 22:16 
GeneralRe: adding pointer arrays Pin
Member 935023730-Jul-15 23:16
Member 935023730-Jul-15 23:16 
GeneralRe: adding pointer arrays Pin
Richard MacCutchan30-Jul-15 23:42
mveRichard MacCutchan30-Jul-15 23:42 
GeneralRe: adding pointer arrays Pin
Member 935023731-Jul-15 0:34
Member 935023731-Jul-15 0:34 
GeneralRe: adding pointer arrays Pin
Richard MacCutchan31-Jul-15 0:36
mveRichard MacCutchan31-Jul-15 0:36 
QuestionDeclaration terminated incorrectly Pin
Pramitha P Kamath27-Jul-15 8:35
Pramitha P Kamath27-Jul-15 8:35 
AnswerRe: Declaration terminated incorrectly Pin
Wes Aday27-Jul-15 8:59
professionalWes Aday27-Jul-15 8:59 
GeneralRe: Declaration terminated incorrectly Pin
Pramitha P Kamath30-Jul-15 8:46
Pramitha P Kamath30-Jul-15 8:46 
AnswerRe: Declaration terminated incorrectly Pin
Richard MacCutchan30-Jul-15 21:14
mveRichard MacCutchan30-Jul-15 21:14 
Questionc++ Pin
Member 1184600721-Jul-15 21:43
Member 1184600721-Jul-15 21:43 
AnswerRe: c++ Pin
Richard MacCutchan21-Jul-15 21:53
mveRichard MacCutchan21-Jul-15 21:53 
GeneralRe: c++ Pin
Sascha Lefèvre25-Jul-15 12:39
professionalSascha Lefèvre25-Jul-15 12:39 
QuestionRe: c++ Pin
Paul Conrad13-Oct-15 7:20
professionalPaul Conrad13-Oct-15 7:20 
Questionc++ Pin
Member 1184600721-Jul-15 21:19
Member 1184600721-Jul-15 21: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.