#include #include #include "ChemPlugin.h" int main(int argc, char** argv) { int nx = 5, ny = 3; std::cout << "Link ChemPlugin instances into a " << nx << " by " << ny << " grid" << std::endl << std::endl; // Create the ChemPlugin instances. ChemPlugin cp_left, cp_right, cp_bottom, cp_top; ChemPlugin *cp = new ChemPlugin[nx*ny]; // Link the instances into a tree. for (int j=0; j