//! @copyright *this file is freware. 
//! @warning Use it at your own risk.
//! @file viud_test.cpp
//! @author Dejan D. M. Milosavljevic
//! @version 1.0
//! @date 2003
//! @copyright *this file is freware. 
//! @warning  Use it at your own risk.


#include <iostream>
#include <iomanip>

#include "void.hpp"

using namespace std;
using namespace S_DDMRM::S_standard;

int main_void( int argc, char *argv[] )
 {
  cout << "--- main_void ---" << endl;

  GC_void I_v1, I_v2;
  GC_void I_v3( I_v2 );
  
  
  I_v1 = I_v2;
  
  
//  cin.get();
  
  return 0;
 }


