Ignore:
Timestamp:
07/20/11 08:03:38 (13 years ago)
Author:
tbretz
Message:
Replaced boost::thread by std::thread and boost::bind by std::bind from the C++0x standard
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Configuration.h

    r11387 r11481  
    4646
    4747    /// Pointer to the mapper function for environment variables
    48     boost::function<std::string(std::string)> fNameMapper;
    49     boost::function<void()>                   fPrintUsage;
    50     boost::function<void(const std::string&)> fPrintVersion;
     48    std::function<std::string(std::string)> fNameMapper;
     49    std::function<void()>                   fPrintUsage;
     50    std::function<void(const std::string&)> fPrintVersion;
    5151
    5252    /// Helper function which return the max of the two arguments in the first argument
     
    9595    void SetArgumentPositions(const po::positional_options_description &desc);
    9696
    97     void SetNameMapper(const boost::function<std::string(std::string)> &func);
     97    void SetNameMapper(const std::function<std::string(std::string)> &func);
    9898    void SetNameMapper();
    9999
    100     void SetPrintUsage(const boost::function<void(void)> &func);
     100    void SetPrintUsage(const std::function<void(void)> &func);
    101101    void SetPrintUsage();
    102102
    103     void SetPrintVersion(const boost::function<void(const std::string &)> &func);
     103    void SetPrintVersion(const std::function<void(const std::string &)> &func);
    104104    void SetPrintVersion();
    105105
Note: See TracChangeset for help on using the changeset viewer.