Skip to content

Commit

Permalink
Brought back include and using statements
Browse files Browse the repository at this point in the history
It's bad but...not worth breaking everything over trying to fix it right now.
  • Loading branch information
CodeByDrescher committed Jan 26, 2024
1 parent c4b18cf commit 2a61976
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions Stochastic/VCellStoch/src/Gibson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <cstdlib>
#include <iostream>
#include <random>
using namespace std;

#include <ctime>
#include "../include/IndexedTree.h"
Expand Down
3 changes: 3 additions & 0 deletions VCell/src/PostProcessingHdf5Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
#include <H5Cpp.h>
#include <iostream>
#include <fstream>
#include <utility>
using std::cout;
using std::endl;
#include <sys/stat.h>

#define POST_PROCESSING_ROOT "/PostProcessing"
Expand Down
2 changes: 1 addition & 1 deletion VCellMessaging/include/VCELL/SimulationMessaging.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
#ifdef USE_MESSAGING
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
#include <memory>

#endif
#include <iostream>
using namespace std;

#if (defined(WIN32) || defined(WIN64) )
#include <windows.h>
Expand Down
4 changes: 4 additions & 0 deletions VCellMessaging/src/SimulationMessaging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
#include <iostream>
#include <algorithm>
#include <sstream>
#include <utility>
using std::cerr;
using std::cout;
using std::endl;

#include <cstdio>
#ifdef USE_MESSAGING
Expand Down

0 comments on commit 2a61976

Please sign in to comment.