Changeset 13892
- Timestamp:
- 05/25/12 20:42:18 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/smartfact.cc
r13890 r13892 22 22 #include "HeadersBIAS.h" 23 23 #include "HeadersFTM.h" 24 25 #include <boost/filesystem.hpp> 24 26 25 27 using namespace std; … … 534 536 ctrl.Handler(d); 535 537 536 const string msg = ctrl.shortmsg+"<br>"+ctrl.file; 538 #if BOOST_VERSION < 104600 539 const string file = boost::filesystem::path(ctrl.file).filename(); 540 #else 541 const string file = boost::filesystem::path(ctrl.file).filename().string(); 542 #endif 543 544 const string msg = ctrl.shortmsg+"<br>"+file; 537 545 HandleControlMessageImp(Event(d, msg.data(), msg.length()+1)); 538 546 }
Note:
See TracChangeset
for help on using the changeset viewer.