]> Creatis software - clitk.git/blob - vv/vvUtils.h
removed headers
[clitk.git] / vv / vvUtils.h
1 #ifndef vvXXX_h
2 #define vvXXX_h
3 #include <list>
4 #include <string>
5
6 ///Returns the last images opened by the user
7 std::list<std::string> GetRecentlyOpenedImages();
8
9 ///Adds an image to the list of recently opened images
10 void AddToRecentlyOpenedImages(std::string filename);
11
12 #endif