00001 // 00002 // Pibero Djawotho <pibero@comp.tamu.edu> 00003 // Texas A&M University Cyclotron Institute 00004 // 1 Jan 2009 00005 // 00006 00007 #ifndef DSM_ALGO_HH 00008 #define DSM_ALGO_HH 00009 00010 struct DSM; 00011 00012 struct DSMAlgo { 00013 virtual void operator()(DSM& dsm) = 0; 00014 virtual ~DSMAlgo() {} 00015 }; 00016 00017 #endif // DSM_ALGO_HH
1.5.9