1 // This is core/vcsl/vcsl_micron.cxx
2 #include "vcsl_micron.h"
3 
4 //---------------------------------------------------------------------------
5 // Return the reference to the unique vcsl_micron object
6 //---------------------------------------------------------------------------
7 vcsl_micron_sptr
instance()8 vcsl_micron::instance()
9 {
10   static vcsl_micron_sptr instance_ = new vcsl_micron;
11   return instance_;
12 }
13