TuttleOFX  1
formatters.cpp
Go to the documentation of this file.
00001 #include "formatters.hpp"
00002 
00003 
00004 namespace tuttle {
00005 namespace common {
00006 namespace formatters {
00007 
00008 boost::shared_ptr<Formatter> Formatter::get()
00009 {
00010         return formatter;
00011 }
00012 
00013 boost::shared_ptr<Formatter> Formatter::formatter(new Formatter);
00014 
00015 }
00016 }
00017 }