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
// to have the cout ("equivalent" to printf) | |
#include <iostream> | |
// to have string stream | |
#include <sstream> | |
#include <boost/date_time/posix_time/posix_time.hpp> | |
#include <boost/date_time/posix_time/posix_time_io.hpp> | |
using namespace boost::posix_time; |
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 <iostream> | |
#include <stdlib.h> | |
class Monstre { | |
public: | |
Monstre() { A = (int*)malloc(sizeof(int)*42); } | |
~Monstre() { std::cout << "iDestroy the new way of iPhoning." << std::endl; } | |
private: | |
int* A; |
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
diff --git a/cabal.project b/cabal.project | |
index 05666eff..03bffb03 100644 | |
--- a/cabal.project | |
+++ b/cabal.project | |
@@ -153,7 +153,7 @@ source-repository-package | |
plugins/backend-ekg | |
plugins/backend-monitoring | |
plugins/backend-trace-forwarder | |
- plugins/scribe-systemd | |
+ -- plugins/scribe-systemd |