00001 /* 00002 * @file TxEventLogFactory.h 00003 * @author Valeri Fine 00004 * 00005 * @(#)cpp/api:$Id: TxEventLogFactory.h,v 1.3 2010/09/24 17:17:35 fine Exp $ 00006 * 00007 * TxEventLogFactory instantiuate the concrete implementation for 00008 * * TxEventLOf interface 00009 */ 00010 00011 #ifndef TX_EVENT_LOG_FACTORY_H 00012 #define TX_EVENT_LOG_FACTORY_H 00013 namespace TxLogging { 00014 class TxEventLog; 00015 class TxEventLogFactory { 00016 public: 00017 static TxEventLog* create(const char *technology="file"); 00018 static int main(int argc, const char *argv[]); 00019 }; 00020 } 00021 #endif
1.5.9