]> git.lyx.org Git - lyx.git/blobdiff - src/support/userinfo.h
hopefully fix tex2lyx linking.
[lyx.git] / src / support / userinfo.h
index 5812440d9c0bc7b8583f146f2ebc8ed9796d47f9..6c103cd722d85f4732f7d17dfa98ab610b7af821 100644 (file)
 #ifndef USERINFO_H
 #define USERINFO_H
 
-#include "support/std_string.h"
+#include <string>
+
 
 namespace lyx {
 namespace support {
 
 /// return the current user's real name
-string const user_name();
+std::string const user_name();
 
 /// return the current user's e-mail address
-string const user_email();
+std::string const user_email();
 
 } // namespace support
 } // namespace lyx