00001 #ifndef __ASMFORMATTER_INTERFACE_H 00002 #define __ASMFORMATTER_INTERFACE_H 00003 00004 class AsmFormatterInterface 00005 { 00006 public: 00007 AsmFormatterInterface() {} 00008 virtual ~AsmFormatterInterface() {} 00009 00010 00011 private: 00012 AsmFormatterInterface( const AsmFormatterInterface& source ); 00013 void operator = ( const AsmFormatterInterface& source ); 00014 }; 00015 00016 00017 #endif // __ASMFORMATTER_INTERFACE_H
1.5.1