Skip to content
Snippets Groups Projects
BlankSymbol.cpp 424 B
Newer Older
  • Learn to ignore specific revisions
  • #include "BlankSymbol.h"
    
    #include <object/Object.h>
    
    #include <registration/ValuePrinterRegistration.hpp>
    
    
    namespace alphabet {
    
    
    BlankSymbol::BlankSymbol() = default;
    
    ext::ostream & operator << ( ext::ostream & out, const BlankSymbol & ) {
    
    }
    
    } /* namespace alphabet */
    
    auto valuePrinter = registration::ValuePrinterRegister < alphabet::BlankSymbol > ( );