aboutsummaryrefslogtreecommitdiff
path: root/src/Panda/Collective_IO.C
blob: 118afe680b8a41543fc9b7722ad4ba28c3fe0be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "definitions.h"
#include "Collective_IO.h"

Collective_IO::Collective_IO(){}

Collective_IO::~Collective_IO()
{
}

Boolean Collective_IO::continue_io()
{
 printf("This function should not be executed\n");
 return YES;
}

void Collective_IO::start_to_finish(Boolean part_time_io, Array *array)
{
 printf("This function should not be executed\n");
}
 
void Collective_IO::compute_node_io_loop(Array *array)
{
 printf("This function should not be executed\n");
}