/**********************************************************************
 *
 * File: contig.cc
 * 
 * This file provides the implementation for contig.h.
 * 
 * Created by: 
 *   Vivian Tsang
 * Created on: 
 *   11/05/2000
 *
 ***********************************************************************/
 
#include <iostream.h>
#include "contig.h"

void Error(const char error_msg[])
{
   cerr << "Error: " << error_msg << endl;
   exit(1);
}

void NEW(CLONE c) 
{
   Error("Fill in the details.");
}

void OVERLAP(CLONE c1, CLONE c2) 
{
   Error("Fill in the details.");
}

void PRINT(CLONE c) 
{
   Error("Fill in the details.");
}

