]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Application.h
Create new graphics from within LyX choosing a sample file to copy from.
[lyx.git] / src / frontends / Application.h
index df0be95493e4cbe5ff2bcbdf71434ec5c7413e66..b321052ddb7661255d7d76585dc75e468b8daf4b 100644 (file)
@@ -18,7 +18,7 @@
 
 #include "support/strfwd.h"
 
-#include <boost/function.hpp>
+#include <functional>
 
 #include <vector>
 
@@ -216,12 +216,12 @@ public:
        *      passing Color_white returns "ffffff".
        */
        virtual std::string const hexName(ColorCode col) = 0;
-       
+
        /**
        * add a callback for socket read notification
        * @param fd socket descriptor (file/socket/etc)
        */
-       typedef boost::function<void()> SocketCallback;
+       typedef std::function<void()> SocketCallback;
        virtual void registerSocketCallback(int fd, SocketCallback func) = 0;
 
        /**