Created
January 12, 2014 17:15
-
-
Save zedtux/8387580 to your computer and use it in GitHub Desktop.
C++: Créer des logs - La suite ? - classa.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| include "classa.h" | |
| ClassA::ClassA() : | |
| logger(log4cxx::Logger::getLogger("ClassA")) | |
| { | |
| std::cout << "Hello !" << std::endl << "Je suis ClassA !" << std::endl; | |
| LOG4CXX_DEBUG(logger, "Ce log vient de ClassA !"); | |
| } | |
| ClassA::~ClassA() | |
| { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment