Log In | Get Help   
Home My Page Projects Code Snippets Project Openings Mareframe
Summary Activity Forums Tracker Lists Tasks Docs Surveys News SCM Files
[mareframe] Annotation of /trunk/gadget/netdata.cc
[mareframe] / trunk / gadget / netdata.cc Repository:
ViewVC logotype

Annotation of /trunk/gadget/netdata.cc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (view) (download)

1 : agomez 1 #include "netdata.h"
2 :     #include "gadget.h"
3 :    
4 :     NetDataVariables::NetDataVariables(int numVar) {
5 :     tag = -1;
6 :     x_id = -1;
7 :     if (numVar < 1) {
8 :     cerr << "Error in netdata - number of variables must be positive\n";
9 :     exit(EXIT_FAILURE);
10 :     }
11 :     x = new double[numVar];
12 :     }
13 :    
14 :     NetDataVariables::~NetDataVariables() {
15 :     delete[] x;
16 :     }
17 :    
18 :     NetDataResult::NetDataResult() {
19 :     }
20 :    
21 :     NetDataResult::~NetDataResult() {
22 :     }

root@forge.cesga.es
ViewVC Help
Powered by ViewVC 1.0.0  

Powered By FusionForge